if( insert_order($HTTP_POST_VARS)!=false )
please explain $HTTP_POST_VARS
I checked out php.net with little luck
$HTTP_POST_VARS is deprecated, u now access it through $_POST
It's an array containing the data submited by a form using the POST method
is it better?
🙂