Anonymous | Login | Signup for a new account | 12-17-2024 08:27 PST |
Main | My View | View Issues | Change Log | Docs |
Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
0001732 | [Quercus] | minor | always | 05-13-07 09:31 | 05-14-07 20:05 | ||||
Reporter | nagashima | View Status | public | ||||||
Assigned To | nam | ||||||||
Priority | normal | Resolution | fixed | ||||||
Status | closed | Product Version | 3.1.1 | ||||||
Summary | 0001732: $_POST was overwrited by querystring | ||||||||
Description |
run this script -------------------------------- <html> <body> <form action="?value1=get_value1" method="post"> <input type="hidden" name="value1" value="post_value1"> <input type="hidden" name="value2" value="post_value2"> <input type="submit"> </form> <?php echo "get_value1 = " . $_GET["value1"]." \n"; echo "post_value1 = " . $_POST["value1"]." \n"; echo "post_value2 = " . $_POST["value2"]." \n"; ?> </body> </html> -------------------------------- php output is -------------------------------- get_value1 = get_value1 post_value1 = post_value1 post_value2 = post_value2 -------------------------------- but quercus output is -------------------------------- get_value1 = get_value1 post_value1 = get_value1 post_value2 = post_value2 -------------------------------- |
||||||||
Additional Information | |||||||||
Attached Files | |||||||||
|
Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
29 total queries executed. 26 unique queries executed. |