[PHP-DEV] PHP 4.0 Bug #6968: Not receiving values from URL From: todd <email protected>
Date: 10/01/00

From: todd <email protected>
Operating system: Win 2K
PHP version: 4.0.2
PHP Bug Type: URL related
Bug description: Not receiving values from URL

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>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>