dear all,

hi!
i have a php page called "check.php" in which is a textbox named "login".on my second php page named "registration.php"
i can see the content of the textbox by echo "$login".
but when i try to get the same content in a textbox in
"registration.php", i get no result.
that text box is also named login.


giving below some relevant code of registration.php :

<?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>
echo"
<form>
Login ID <font color=\"red\">* </font><input name=\"login\" value=\"$login\" >
</form>";
?>


thanks,
diksha.




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



Reply via email to