For some reason I am unable to print this string: ‘ggukjbgfjI:2<EiK6’. There is no escape for “<” that I am aware of.
<?php
$x = 'ggukjbgfjI:2<';
$y = 'EiK6';
$z = 'ggukjbgfjI:2<EiK6';
echo $x;
echo $y;
echo "<br><br>";
echo $z;
?>
For some reason I am unable to print this string: ‘ggukjbgfjI:2<EiK6’. There is no escape for “<” that I am aware of.
<?php
$x = 'ggukjbgfjI:2<';
$y = 'EiK6';
$z = 'ggukjbgfjI:2<EiK6';
echo $x;
echo $y;
echo "<br><br>";
echo $z;
?>