Example #1
0
dl("php_mcve.so");

$conn = MCVE_InitConn();
print "MCVE_InitConn() returned $conn<br>\n";

if ($connect_type == "IP") {
	MCVE_SetIP($conn, "localhost", 8333) or
		die("MCVE_SetIP() failed");
	print "MCVE_SetIP() successful<br>\n";
} else {
	MCVE_SetDropFile($conn, "/var/mcve/trans") or
		die("MCVE_SetDropFile() failed");
	print "MCVE_SetDropFile() successful<br>\n";
}

MCVE_Connect($conn) or
	die("MCVE_Connect() failed");
print "MCVE_Connect() successful<br>\n";

# send a request
$ident = MCVE_Sale($conn, "test", "test", NULL, "5454545454545454",
    "1205", 11.00, NULL, NULL, NULL, NULL, "me", NULL, 54321);
if ($ident == -1)
	die("MCVE_Sale() failed");
else
	print "Identifier: $ident<br>\n";

$ident = MCVE_Sale($conn, "test", "test", NULL, "5454545454545454",
    "1205", 12.00, NULL, NULL, NULL, NULL, "me", NULL, 54321);
if ($ident == -1)
	die("MCVE_Sale() failed");
Example #2
0
<?php

MCVE_InitEngine(NULL);
$conn = MCVE_InitConn();
if (MCVE_SetIP($conn, "testbox.mcve.com", 8333)) {
    echo "Set connection Properly";
} else {
    echo "Failed Setting method";
    exit;
}
if (!MCVE_Connect($conn)) {
    echo "<BR>Could not connect<BR>";
} else {
    echo "<BR>Connection Established<BR>";
}
MCVE_DestroyConn($conn);
MCVE_DestroyEngine();