PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
//================================================
//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'];
the value that line 30 is supposed to get is a number, if that helps....
You might be getting an error because you are starting a variable name with a number. I thought that variables and array indeces needed to start with either an alpha character or an underscore.
Everah wrote:You might be getting an error because you are starting a variable name with a number. I thought that variables and array indeces needed to start with either an alpha character or an underscore.
I know... stupid fat fingers... If I didn't spend twice as much time correcting my spelling mistakes I might actually stand a chance at coming in first .