Hi Martin

You can also do this

 <INPUT TYPE="HIDDEN" VALUE="Hello &quot;world" NAME="Message">

HTH
Martin  :)



-----Original Message-----
From: Tom Rogers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 03, 2002 11:24 AM
To: Martin Thoma
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] How to escape " in hidden field?


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

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to