mySQLsafe($_GET['oid']));
$results = $db->select($query, $rowsPerPage, $page);
$numrows = $db->numrows($query);
?>
:
« - »
|
|
|
|
|
|
|
|
|
|
|
|
| / |
|
|
|
mySQLsafe($_GET['searchKey'], ''));
if ($db->numrows($sql) >= 1) {
$results = $db->select($sql, $rowsPerPage, $page);
$numrows = $db->numrows($sql);
$search = true;
}
}
if ($search !== true) {
$query = sprintf("SELECT DISTINCT order_id, time, amount, gateway, trans_id FROM %1\$sCubeCart_transactions GROUP BY order_id ORDER BY time DESC", $glob['dbprefix']);
$results = $db->select($query, $rowsPerPage, $page);
$numrows = $db->numrows($query);
}
if ($results == true) {
for ($i=0; $i
|
|
|
|
|