php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #6968 Not receiving values from URL
Submitted: 2000-10-01 02:26 UTC Modified: 2000-10-03 02:29 UTC
From: todd at aristesoftware dot com Assigned:
Status: Closed Package: URL related
PHP Version: 4.0.2 OS: Win 2K
Private report: No CVE-ID: None
 [2000-10-01 02:26 UTC] todd at aristesoftware dot com
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>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-10-03 02:29 UTC] waldschrott@php.net
This is no bug rather than a configuration problem, check your "register_globals" setting in your php.ini and read the manual to understand what it means

if you?ve general questions regarding the use of PHP, please contact php-general@lists.php.net or subscribe at php-general-subscribe@lists.php.net.
Thanks for using PHP.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 12:01:31 2024 UTC