Hi,

it's a common error...
I think you have an unclosed string before in your script...

example :

$data='the data;
....
$sDate = date('Y-m-d',time());

this code will produce an error on ligne with $sDate only becose the line
with $data is unclosed ( missing the last ' )..

Take a look at your entire script... I'm sure it's this ;)

Regards,
P.E. Baroiller


"James Johnson" <[EMAIL PROTECTED]> a écrit dans le message de
news:[EMAIL PROTECTED]
> Hi,
>
> I'm trying to figure out this error I'm getting in my code:
>
> Parse error: parse error in /home/.paco/campuscb/AdPayment.php on line 9
>
> This is the code on line 9:
>
> $sDate = date('Y-m-d',time());
>
> Does this look valid?
> Thanks,
> James
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to