Parse Error, Unexpected T_Variable
Posted: Sat May 27, 2006 8:58 pm
Hi Everyone,
I am getting this error, and am not sure why - Parse error: parse error, unexpected T_VARIABLE in c:\inetpub\wwwroot\zipcode_response.php on line 52
Here's the code that the error is referring to:
I'm just trying to update an existing record with a zip code. Y'all have any ideas?
Thanks,
Chris
I am getting this error, and am not sure why - Parse error: parse error, unexpected T_VARIABLE in c:\inetpub\wwwroot\zipcode_response.php on line 52
Here's the code that the error is referring to:
Code: Select all
$zipCode = $_Post ['ZipCode']
$updateRecord = new FX($serverIP,$webCompanionPort); //this is the line that the error message is referring to
$updateRecord -> SetDBData('FXCart.fp7','Orders_Temp');
$updateRecord -> SetDBPassword('pass','user');
$updateRecord -> AddDBParam('Order_No',$_SESSION['ordno']);
$updateRecord -> AddDBParam('ZipCode',$zipCode);
$updateRecordResult = $updateRecord -> FMEdit();Thanks,
Chris