From:             [EMAIL PROTECTED]
Operating system: Linux RedHat8  & IIS on Win2000 
PHP version:      4.2.2
PHP Bug Type:     Strings related
Bug description:  cann't track vars of the form query string

i have 1.htm file as following :
<HTML>
<HEAD></HEAD>
<BODY>
<FORM METHOD=GET ACTION="2.php">
Who is your favourite author?
<INPUT NAME="Author" TYPE="TEXT">
<BR>
<BR>
<INPUT TYPE=SUBMIT>
</FORM>
</BODY>
</HTML>


*****

and the action file 2.php   as following

<HTML>
<HEAD></HEAD>
<BODY>
Your favorite author is:
<?php
echo $Author;
?>
</BODY>
</HTML>

but after submit i got the following in 2.php

1- in the URL :  http://localhost/2.php?Author=Tom
2- in the body  i got only :
Your favorite author is:
With no value of $Author var even it is in the URL 

Please help me
-- 
Edit bug report at http://bugs.php.net/?id=21678&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=21678&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=21678&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=21678&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=21678&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=21678&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=21678&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=21678&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=21678&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=21678&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=21678&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=21678&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=21678&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=21678&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=21678&r=gnused

Reply via email to