I am trying to use a piece of PHP to solve a shopping cart problem movening from one to domain to a SSL domian for credit cards detail. The cart uses cookies to hold cart detail and I fix has been posted to use php instead. BUT I can't get it to run.
This code looks odd to me, does it make sense???
<?php
include("../ssl_fix.class.php");
$ssl_fix = new ssl_fix();
$ssl_fix->drawCart();
?>
It seems like the line
$ssl_fix->drawCart();
should be
$ssl_fix = drawCart();
is -> a valid syntax in php?
the entire file is also attached I hope!!