Hi,
I having some difficulty using stripslahes when using them format a single column in an array.
Here\'s a sample of the code I am using. I just don\'t understand why it returns nothing.
$sql_vt=(\" SELECT STATMENT \");
$view_title_result= mysql_query($sql_vt, $connection);
while ($row_vt = mysql_fetch_array($view_title_result)) {
$row_vt[title_summary]=stripslashes($row_vt[title_summmary]);
print (\"
row_vt[title_name]<br>
row_vt[title_author]<br>
row_vt[title_summary]
\");
}
Even when I replace:
$row_vt[title_summary]=stripslahes($row_vt[title_summary]
with something like this:
$summary=stripslahes($row_vt[title_summary])
The same result of nothing comes up for that variable. Everything else works, except for that one variable.
Please help. Thanks in advance,
Kenn