coming from checkout.php where a customer fills in their address etc.
the action of the form sends the customer information to "purchase.php"
and in purchase.php there is this line of code
"// if filled out
if($cart&&$name&&$address&&$city&&$zip&&$country)
{
// able to insert into database
if( insert_order($HTTP_POST_VARS)!=false )"
is the if statement a command to insert details into database? Or is the MySQL command somewhere else?
Thanks in advance