Now I have turned Global variables off I am having trouble inserting my $_POST array into my database.
Does anyone have the correct syntax for inserting a $_POST array into a MySQL INSERT command?
echoing them works like this:
echo $_POST [whatever];
But when I insert them into a query like this:
$sqlquery = "INSERT INTO service_delivery
VALUES ('$POST[whatever]', '$POST [whenever]')";
It doesnt seem to work
Any wizend words of advice on offer?
Thanks
Ratso