Hi,
Having problems with the quotes again...really can't seem to understand
I have the following code:
echo"<input name=hide_name type=hidden value='$name_dis[0]'>";
The $name_dis[0] contains I'm ok
Then i pull out the value via:
echo"<font color=#FFFF00>$_POST[hide_name]";
Outputs I
How can i quote it so that my POST value will give me I'm ok to input into MySQL table ? I've tried the addslashes() and {} to surround the echo array but output I/ and I respectively ??Any help is greatly appreciated. Thanks.