<?PHP
$connection=mysql_connect("localhost","root","")or die("Could not connect");
print "Connected successfully";
mysql_select_db("bdoi_change")or die("could not select database");
echo " $login " <pre>
The line above you give you an error ...
echo"
<form>
Login ID <font color=\"red\">* </font><input name=\"login\" value=\"$login\" >
</form>";
?>
There's a syntx error in your code as pointed out. The <pre> is inside the <?PHP ?> tags but not quoted ... maybe you made a cut-and-paste error?
Jc
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php