[PHP] login script fix help needed

2003-01-20 Thread Karl James






hey guys,

I was wondering if you can see why i cant insert the info into a table,

right now its 

Warning: Cannot add header information - headers already sent by (output started at /home/virtual/site12/fst/var/www/html/Create_Account.php:8) in /home/virtual/site12/fst/var/www/html/Create_Account.php on line 10

http://www.ultimatefootballleague.com/Create_Account.phps

can anyone help me get this working thanks.
and let me know what i did wrong.

Karl







 IncrediMail - Email has finally evolved - Click Here

RE: [PHP] login script fix help needed

2003-01-20 Thread Timothy Hitchens \(HiTCHO\)
Move this below to after your php logic:

html 
head 
titleAdd a User/title 
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1

/head 

body 



Timothy Hitchens (HiTCHO)
Open Source Consulting
e-mail: [EMAIL PROTECTED] 
-Original Message-
From: Karl James [mailto:[EMAIL PROTECTED]] 
Sent: Monday, 20 January 2003 1:59 PM
To: php
Subject: [PHP] login script fix help needed


hey guys,

I was wondering if you can see why i cant insert the info into a table,

right now its 

Warning: Cannot add header information - headers already sent by (output
started at /home/virtual/site12/fst/var/www/html/Create_Account.php:8)
in /home/virtual/site12/fst/var/www/html/Create_Account.php on line 10


http://www.ultimatefootballleague.com/Create_Account.phps

can anyone help me get this working thanks.
and let me know what i did wrong.

Karl



  IncrediMail - Email has finally evolved - Click Here


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] login script fix help needed

2003-01-20 Thread Chris Shiflett
--- Karl James [EMAIL PROTECTED] wrote:
 Warning: Cannot add header information - headers already
 sent by (output started at

/home/virtual/site12/fst/var/www/html/Create_Account.php:8)
 in
/home/virtual/site12/fst/var/www/html/Create_Account.php
 on line 10

This means you have something on line 10 of
Create_account.php that sends headers, but PHP cannot
because you have something on line 8 that causes output.

Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php