|
Posted by ZeldorBlat on 05/11/07 14:19
On May 11, 10:16 am, dave.degr...@gmail.com wrote:
> On May 11, 10:13 am, ZeldorBlat <zeldorb...@gmail.com> wrote:
>
> > On May 11, 10:08 am, dave.degr...@gmail.com wrote:
>
> > > What does this mean?
>
> > > [client 134.205.2.139] PHP Parse error: parse error, unexpected
> > > T_CONSTANT_ENC\
> > > APSED_STRING in /home/web/david/processedorder.php on line 23,
> > > referer: http://\
> > > degroot.xidus.net/
>
> > What's on line 23 (and the lines around it)? Probably has something
> > to do with your quotes.
>
> Zedor thanks for the quick response... Line 23 is the 'Customer
> address" line:
>
> $toaddress = 'dave.degr...@gmail.com';
> $subject = 'autoparts order';
> $mailcontent = 'Customer name: '.$name." \n"
> 'Customer address: '.$address." \n"
> 'Thermostats Ordered: '.$thermostqty2." \n"
> 'Sparkplugs Ordered: '.$spkplgqnt." \n"
> 'Tyers Ordered: '.$tireqnt." \n"
> $fromaddress = 'From: nore...@degroot.xidus.net';
> mail($toaddress, $subject, $mailcontent, $fromaddress);
You're missing a semi-colon after your "Tyers Ordered" line.
[Back to original message]
|