I'm running PHP 4.04 on Apache 1.3.14 and experimenting with using ssl for credit cart processing. The server has a secure area and a non-secure area. I have PHP scripts running fine in the non-secure area. But when I try to run anything on the secure area (even a test 'Hello world' script), I get this error:
results.php: parse error, expecting `'('' on line 3
echo "
(and it blinks starting at the 'o' in echo).
I've experimented with using print(" instead of echo, but no luck. Anything I have after the "echo" command generates this error. I know I'm receiving data back from the credit cart company, because I can see it in the header.
Does PHP have to be compiled differently to use ssl? I need to grab the data being returned and display it nicely, and also use it to control the remainder of the script (card accept/decline).
Thanks,
Sheila