PHP string - what's wrong with '<'? -
PHP string - what's wrong with '<'? -
i'm working strings , somehow php decides ignore next string if there "<" inside. can't find that. see example:
$str = 'foo<bar' // echoes foo, foo<bar expected
are there string operators don't know about? strings wrapped within ' ' should not evaluated php, right?
use this
htmlspecialchars ("foo<bar");
php string concatenation
Comments
Post a Comment