sir,
when writing the code of PHP
<?php
$test="Which statement about the below list is NOT true?<UL><LI Type=I>Item<LI>Item<LI>Item</UL>";
echo($test);
?>
to display output like this
Which statement about the below list is NOT true?
<UL>
<LI Type=I>Item
<LI>Item
<LI>Item
</UL>
but allways it display like this
Which statement about the below list is NOT true?
.Item
.Item
.Item
so please help me to display source code of HTML tag on Browser Page
thank You
Rupak Sinha