sytax error

hi
i am new to PHP. i have written below code. getting syntax error.

echo (“addMarker($latitude,$longitude,‘DeviceID:$deviceID
Date/Time:$createdDate VEHICLE PARAMETERS LIST’);\n”);

can some one help me please

Really not sure what you’re trying to accomplish, but I’m going to take a guess…

Try This.

[php] echo addMarker($latitude,$longitude,‘DeviceID:$deviceID
Date/Time:$createdDate VEHICLE PARAMETERS LIST’) . “\n”;
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service