Hi,
Monday, September 2, 2002, 7:59:43 PM, you wrote:
MT> Hello!
MT> I have a simple hidden input-field like
MT> <INPUT TYPE="HIDDEN" VALUE="Hello world" NAME="Message">
MT> Now sometimes I need to insert " like:
MT> <INPUT TYPE="HIDDEN" VALUE="Hello \"world\"" NAME="Message">
MT> But this makes PHP (or the browser?) cutting of the string after "Hello
MT> ". How can I escape the "?
MT> Martin
Try this with single quotes:
<INPUT TYPE="HIDDEN" VALUE='Hello "world"' NAME="Message">
--
regards,
Tom
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php