Using PHP, I'm creating an <input> tag. How do you delimit the text string for the value parm of an
<input> tag, when the string contains the delimit char?
Example: <input...value= "This text has a " in it"...>
I tried preceeding the " with a the escape char \, but the browser apparently still used the
embedded " as termination of the value string.
One other thing...is the delimiter limited to just " and ' ?
Thanks for any help.
Don
<input> tag, when the string contains the delimit char?
Example: <input...value= "This text has a " in it"...>
I tried preceeding the " with a the escape char \, but the browser apparently still used the
embedded " as termination of the value string.
One other thing...is the delimiter limited to just " and ' ?
Thanks for any help.
Don
Comment