Well quickly looking at the code I can't see what line is causing the
Warning: Cannot add header information
but there have been many discussion explaining why this happens... as for
your
Unknown MySQL Server Host '$198.63.221.3'
the error for that is on the line:
if(!($link_id = mysql_connect($198.63.221.3, $Ultimatefootball,
$kjames1973))) die(mysql_erorr());
I think the line would look better like:
$link_id = mysql_connect('198.63.221.3', 'Ultimatefootball', 'kjames1973')
or die(mysql_erorr());(might be a good idea to change your password now btw (since you have shown everyone)) Hope that gets you started Andrew ----- Original Message ----- From: "Karl James" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, December 01, 2002 4:46 AM Subject: [PHP] login_script_help needed. > http://www.ultimatefootballleague.com/Create_Account.phps > > hey people > > I was wondering if anyone can tell me why I cant get this script to > work. > > Or do you have an easier one I can use.. > > Thanks > Karl > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

