Hi. My problem is that I am able to store the double quotes inside the database, but when i display it on a form it ignores everything between the double quotes for ALL the text field. But, for a textarea it works fine displaying the double quotes and the text between it. I thought this is kinda odd. Can i get some input ? Thanks.
For example in database: i said “Hello”
on the form, it just displays: i said
please see attached sample code.
“
$image[“Title”] . “”>
n
echo "<tr><td>Title</td>" .
"<td><TEXTAREA NAME="Title" rows="1" cols="100">" .
$image["Title"] . "</textarea><br />n </td></tr>" ;
echo "<tr><td>Comments</td>" .
"<td><TEXTAREA NAME="Comments" rows="3" cols="60">" .
$image["Comments"] . "</textarea><br />n</td></tr>" ;
echo "<tr><td>Keywords</td>" .
"<td><INPUT TYPE="text" NAME="Keywords" SIZE="80" value="" .
$image[“KeyWords”] . “”>
n" ;