here's what i've got...probably the easiest php command...
mail("$fmrecipientsemail","$fmsubject","$fmmessage","FROM:$fmsendersemail\nReply-To: $fmsendersemail\n");
$fmmessage is the variable from which i want to strip the slashes.
so in order to use the stripslashes() command, do i need to insert it before the mail command like this?
<?php
stripslashes("$fmmessage");
mail("$fmrecipientsemail","$fmsubject","$fmmessage","FROM:$fmsendersemail\nReply-To: $fmsendersemail\n");
?>
thanks for your patience