Exemplo n.º 1
0
$row1 = mysqli_fetch_array($res1);
$client_amount = mysqli_num_rows($res1);
/************   3ak3aka Again        *****************

	$queryDel = " select * from check_tb  where  u_id = '".$_SESSION['cafeteriaSystem']."' and status='2' ";  
$resDel = $mysqli->query($queryDel) or die (mysqli_error($mysqli));

	$client_deliver=mysqli_num_rows($resDel);

	$queryProc = " select * from check_tb  where  u_id = '".$_SESSION['cafeteriaSystem']."' and status='3' ";  
$resProc = $mysqli->query($queryProc) or die (mysqli_error($mysqli));

	$client_process=mysqli_num_rows($resProc);

	/*****************************************************/
//}
//$client_amount = $row['id'];
//echo $server_time ."<BR>" . $client_amount;
if ($orders->checkFoundOrdersForId($_SESSION['cafeteriaSystem'])) {
    $orders->viewChecksForUser($_SESSION['cafeteriaSystem'], "1");
} else {
    ?>
							<div class="alert alert-danger">Sorry No Orders Found  For This User</div>
						<?php 
}
$response = array();
$response['lastModified'] = $client_amount;
$response['msg'] = "kkkkk";
//$response['LastModifiedDelivered'] = $client_deliver;
//$response['LastModifiedProcessing'] = $client_process;
//echo json_encode($response);
Exemplo n.º 2
0
        <a href="addUser.php">Add Users</a> | <a href="rooms.php">Rooms</a>
    </div>
</div>
</div>

<!-- All Will Write Their Code Here -->
<div class="row">
<div class="row table-responsive">
	
	<?php 
    if (isset($_GET['del_id'])) {
        $del_id = $_GET['del_id'];
        if ($validate->checkNotNull($del_id)) {
            if ($validate->checkNumeric($del_id)) {
                if ($validate->checkID($del_id)) {
                    if ($orders->checkFoundOrdersForId($del_id)) {
                        ?>
<div class="alert alert-danger text-center">Cannot Delete This User Becous he already Get  Orders</div><?php 
                    } else {
                        $users->delete($del_id);
                    }
                } else {
                    echo "No User Found With This Data";
                }
            } else {
                header("location:home.php");
            }
        } else {
            header("location:home.php");
        }
    }