Thanks very much for your patience, sorry I’m slow to understand.
here’s page1.php
[php]session_start();
$_SESSION[‘name’] = $contactName;
header( “Location: http://wwww.aSite.com/thanksForOrder.php”);
[/php]
here’s thanksForOrder.php
[php]session_start();
echo “Dear $_SESSION[‘name’]”;
[/php]
Here’s the error I’m getting:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /aSite.com/thanksForOrder.php on line 23
I’m guessing it’s something about echo that I’m doing wrong.
Thanks again,
Gerard