Hi.
I know I should be using htmlentities for all my form text input fields but this doesn't work:
<?php
echo "<tr>
<td align=\"right\">".Telephone." :</td>
<td><input type=\"text\" name=\"telephone\" size=\"27\"
value=\"htmlentities($row[telephone])\"> Inc. dialing codes
</td>
</tr>";
?>
It simply shows the input value as "htmlentities(0123456789)" in the form? What have I done wrong please?