|
Posted by dave.degroot on 05/11/07 14:16
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.degroot@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: noreply@degroot.xidus.net';
mail($toaddress, $subject, $mailcontent, $fromaddress);
[Back to original message]
|