|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-03 02:29 UTC] waldschrott@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
OS: Win 2K IIS 5 PHP 4.02 (Win version from the www.php.net site) I am able to access my Interbase DB and perform other PHP functions *but* in the scripts below, I am not receiving data passed via the URL (e.g. $username). +++ <html> <form action="processform.php" method=POST> Please type your name here:<br> <input type="text" name="username"><br><br> <input type=submit value="Submit data" </form> </html> +++ <html> <?php echo("Welcome, " . $username); ?> </html>