|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-12-24 14:33 UTC] laruence@php.net
[2012-12-24 14:33 UTC] laruence@php.net
-Status: Open
+Status: Not a bug
[2012-12-24 14:33 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 10 03:00:01 2025 UTC |
Description: ------------ echo (or var_dump) "SELECT * FROM table WHERE `Date`<NOW()"; the part after the 'lower than' ("<NOW...") seems like broken HTML tag and breaks the code without any errors. Test script: --------------- echo "SELECT * FROM table WHERE `Date`<NOW()"; echo 'DONE'; //this is not printed or everything else afterwords Expected result: ---------------- I expected to see my string on the screen and the code will still be running Actual result: -------------- It's only print "SELECT * FROM table WHERE `Date`" and then the script breaks.