np alqadir!
When the script creates a new thread in a forum,
an error occurs if a member has posted a ' in the thread title.
I'd like to process $ad_title (the var. i've used for the title) to strip out ' and " or any characters that could cause a problem.
doing some research into it, the trim function might do it
http://ca.php.net/trim
Think this would remove ' ? How would I remove "?
trim($ad_title, " ' ");
I crossposted this in the wrong thread (oops) but Delphy suggested using this:
$ad_title = html_entities($ad_title, ENT_QUOTES)
but it creates an error when entering the script...
anyone have any suggestions?