Re: Contact php form for web
"2007" <FW3006@sbcglobal.net> wrote in message
news:87030ef9-d7fe-4b55-9874-902dc404623f@s37g2000prg.googlegroups.com...
> Hi
>
> I have a web page running.
> One thing is not working on it.
> It is not sending the emails from the web,
>
> I have the following entry in the *.php file - what is wrong with it?
>
> mail("abc7@gmail.com ","Contact",stripslashes($msg), $mailheaders);
>
> Please ee below for the full form.
>
> Thanks
Since nobody else has responded (and I'm no expert) -
My guess is that you can't have a function in the parameters. Try
$msg=stripslashes($msg);
mail("abc7@gmail.com ","Contact",$msg, $mailheaders);
|