OK, so I'm looking through the latest version of the PHP manual, and I see this:
[snip]
Example 31-2. Data to be edited by the user
<?php
echo "<textarea name=mydata>\n";
echo htmlescape($data)."\n";
echo "</textarea>";
?>
[/snip]
(this is in "/FAQ/PHP & HTML")
Now, I looked at the function tables and searched the manual, and couldn't find this function. I also tried it out with PHP 4.1.0, and the function isn't defined. Anyone know what's uup witht his?
--Jason