Children's & Infant's Wear News:





   Copyright © 2005 Wellingborough England directory the Original Code is Ruslan R. Fazliev. | | Portions created by Ruslan R. Fazliev are Copyright (C) 2001-2002 | | Ruslan R. Fazliev. All Rights Reserved. | +-----------------------------------------------------------------------------+ \*****************************************************************************/ # # $Id: cc_mm.php,v 1.6 2002/11/14 07:58:21 zorg Exp $ # # Merchant Manager CC processing module # $mm_merchantid = $module_params["param01"]; $mm_referer = $module_params["param02"]; # # To use authorize.net module please correctly enter -referer parameter # if(!file_exists("mm.pl")) { header("Location: ../customer/error_message.php?error_ccprocessor_notfound"); exit; } # # Execute perl script # exec("./mm.pl -merchantid=$mm_merchantid -ccnum=\"".$userinfo["card_number"]."\" -ccexpdate=\"".$userinfo["card_expire"]."\" -referer=\"$mm_referer\" -ccamount=\"".$cart["total_cost"]."\" -bname=\"".addslashes($userinfo["firstname"])." ".addslashes($userinfo["lastname"])."\" 2>&1",$bill_output); list($bill_errorcode,$bill_message) = explode(",",$bill_output[0]); if ($bill_errorcode == 2) $bill_error="error_ccprocessor_error"; elseif ($bill_errorcode != 1) $bill_error="error_ccprocessor_unavailable"; $bill_message=$bill_output[0]; ?>