$_GET isn't working for me
Posted: Fri Jun 16, 2006 1:18 pm
Does anyone why the code below is giving me this error?
Error: "Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in C:\wamp\www\orderFormMailer.php on line 30"
Code:
the value that line 30 is supposed to get is a number, if that helps....
thanks in advance!
Error: "Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '$' in C:\wamp\www\orderFormMailer.php on line 30"
Code:
Code: Select all
//================================================
//Get the Customer information from the order form
//================================================
$companyName = $GET_['companyName'];
$contactName = $GET_['contactName'];
$phoneNumber = $GET_['phoneNumber'];
//================================================
//Get the Part Quantity Values from the Order Form
//================================================
$0NS1553 = $_GET['0NS1553']; //this is line 30, btw
$0NS1553G = $_GET['0NS1553G'];
$0NS1560G = $_GET['0NS1560G'];
$0NS26721G = $_GET['0NS26721G'];thanks in advance!