|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-04-14 19:48 UTC] tony2001@php.net
[2005-04-14 20:14 UTC] dwd at polyserve dot com
[2005-04-14 20:57 UTC] wez@php.net
[2005-04-14 21:01 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 18:00:01 2025 UTC |
Description: ------------ Our index.php has some code at the top that uses the '<>' operator: <? ... if ($email <> "") { ... } ?> This code was not being parsed correctly, and the web browser would spit out the text following the <> operator as if it was content. Changing the <> to != fixed the problem, but I'd like to know why, as <> should be equivalent to != according to the documentation.