|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-12-01 13:33 UTC] clyuri at uadec dot mx
Description: ------------ I have a problem with maybe the parsing of php script; where it says : print $variable, the browser returns : $variable=its value. the output it's only with IE I'm using php 4.2.2-17 out-of-the-box (preinstalled with RH), RedHat Intel Reproduce code: --------------- <a href=send.php?nick=<?php echo "$nimi2"; ?>&astu=joo>Enter</a> Expected result: ---------------- send.php?nick=something&astu=joo Actual result: -------------- send.php?nick=somethingnimi2=something&astu=joo PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 08 11:00:01 2026 UTC |
does this happen if you use: <?php echo $nimi2; ?> or <?php echo "{$nimi2}"; ?> ?