Dear Freinds,
I am trying to pass the value from one page to other. But that value is not
displayed by the receiving page.
I am using win 2000 server with IIS. Is there anything to be configured in
php.ini file?
The following is the code:
user.php
<HTML>
<FORM METHOD="POST" ACTION="process.php">
<INPUT TYPE="text" NAME="username"><BR><BR>
<INPUT TYPE="submit" value= "Submit data">
</FORM>
</HTML>
-----------------------------------------------------------------
process.php
<HTML>
<?
echo (" Welcome, " . $username);
?>
</HTML>
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php