i have a problem withe the escape character.
<? php
print "<select name=cmbcond size=7 >";
echo "<option value='=' > =";
echo "<option value='<' > <";
echo "<option value='>' > >";
echo "<option value='<>' > <>";
echo "<option value='<=' > <=";
echo "<option value='>=' > >=";
print "</select>";
?>
I have a proble with the < & all the signs below it in printing to the text area.
e.g. i have to print a<b
but its not printing.
Euqal to sign is printing perfect, but in the case of other signs it will not printing perfect.
I tried to put escape character but value is not printed perfectly.
echo "<option value=\'<\' > <";
but this is also not working.
plz give me a soultion
thnx