示例#1
0
<?php

include "lib/dataprocess.php";
$dp = new DataProcess();
$dp->settings();
$row = $dp->checkifemailormobileExist($_GET['email'], $_GET['mobile']);
if (count($row) < 1) {
    $row = array();
}
echo json_encode($row);