ID:               24777
 Updated by:       [EMAIL PROTECTED]
 Reported By:      csnyder at chxo dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         Strings related
 Operating System: Linux / FreeBSD
 PHP Version:      4.3.2
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions. 

Thank you for your interest in PHP.

It works fine, your browser simply treating <email> as HTML tag and not
showing it. If you view the HTML source you'll see all of the text.


Previous Comments:
------------------------------------------------------------------------

[2003-07-23 15:59:33] csnyder at chxo dot com

Description:
------------
Anything after %3C (>) in a query string value is being ignored by
parse_str().

For instance, given the request:
http://example.com/script.php?to=me+%3Cmail%40example.com%3E

$_GET['to'] is "me " instead of "me <[EMAIL PROTECTED]>"


Reproduce code:
---------------
$query= "to=".urlencode("me <[EMAIL PROTECTED]>");
parse_str($query);
print $to;

Expected result:
----------------
me <[EMAIL PROTECTED]>

Actual result:
--------------
me 


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=24777&edit=1

Reply via email to