first commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
//echo "[".date("Y-m-d H:i:s")."] Daily Report job is starting.\n";
|
||||
include '../backend.php';
|
||||
define('SAVVY_USER_LOGINACCOUNT', 22015);
|
||||
|
||||
function Fextension_call($in, &$out) {
|
||||
// logToFl("Merchant_Name count->" . $in["merchant_name"]);
|
||||
global $savvyext;
|
||||
$out = $savvyext->savvyext_api($in);
|
||||
$ret = $out["retval"];
|
||||
return $ret;
|
||||
}
|
||||
|
||||
$inX["username"] = 'ses66181@gmail.com';
|
||||
$inX["password"] = '12345678';
|
||||
$inX["pid"] = '100';
|
||||
$inX["action"] = SAVVY_USER_LOGINACCOUNT;
|
||||
$outX=array();
|
||||
|
||||
|
||||
$extension_call = true;
|
||||
|
||||
if ($extension_call == true ) {
|
||||
// logToFl("merchant_name count->" . $res->merchant_name);
|
||||
Fextension_call($inX, $outX);
|
||||
}
|
||||
|
||||
print_r( $outX );
|
||||
?>
|
||||
Reference in New Issue
Block a user