Sorry if this is a silly question, but I currently have the following and it SEEMS to be working in the browser, but Dreamweaver is telling me there is a syntax error:
$formdescription = mysql_real_escape_string(strip_tags($_POST['form_description']));
Yes, it's ok :) Forget Dreamweaver!
You can also split the above:
$formdescription = $_POST['form_description'];
$formdescription = strip_tags($formdescription);
$formdescription = mysql_real_escape_string($formdescription);