I have an iframe, it contains a php file that I set some session data with:
Code: Select all
$_SESSION['pos']['gst_total'] = $gst_total;Code: Select all
echo "gstsession = ".$_SESSION['pos']['gst_total']."<br>";Now the problem!
Code: Select all
echo "gstsession = ".$_SESSION['pos']['gst_total']."<br>";and nothing! All it outputs is this:
Code: Select all
gstsession =Rob