Example #1
0
<?php

require_once 'init.php';
session_start();
if (!isset($_SESSION['user_id'])) {
    header('location: ' . $BASEURL . 'user/login');
    exit;
}
$min = isset($_GET['min']) ? $_GET['min'] : -2;
$max = isset($_GET['max']) ? $_GET['max'] : 999;
$dal = new DataAccessLayer();
$schols = $dal->GetPhase1GridData($min, $max);
$rowstyleeven = 0;
include "{$BASEDIR}/templates/header_review.php";
?>
<form method="post" action="<?php 
echo $BASEURL;
?>
review/grid">
<h1>Applications</h1>
<?php 
include "{$BASEDIR}/templates/admin_nav.php";
?>
<table style="width: 100%">
	<tr>
		<th>id</th>
		<th>name</th>
		<th>email</th>
		<th>residence</th>
		<th>sex</th>
		<th>age</th>