|
display_cart($shipping_type,$sku,$quantity);
if(isset($uid)) {
$sql = "SELECT firstname,lastname,address1,address2,city,state,zipcode,country,billcc,security_num,billexp,cctype FROM store_billing WHERE(memberid = '$uid')";
$result = mysql_query($sql) or die("Error: ".mysql_error()." ");
list($firstname,$lastname,$address1,$address2,$city,$state,$zip,$country,$ccnum,$security_num,$ccexp,$cardtype) = mysql_fetch_row($result);
$sql3 = "SELECT email,phone FROM store_users WHERE(uid = '$uid')";
$result3 = mysql_query($sql3) or die("Error: ".mysql_error()." ");
list($email,$telephone) = mysql_fetch_row($result3);
}
?>
|