Update index.php
[clinton/MarylandElectronicPetitionSignature.git] / index.php
1 <?PHP include_once('header.php'); ?>
2 <div class="container">
3 <h3>Welcome!</h3>
4 Development In Progress - Please Click Through the Menu to Review
5 <h3>Stats</h3>
6 <?PHP
7 if ($result = $petition->query("SELECT VTRID FROM VoterList")) {
8
9 /* determine number of rows result set */
10 $row_cnt = $result->num_rows;
11
12 echo number_format($row_cnt);
13
14 /* close result set */
15 $result->close();
16 }
17
18 ?>
19 </div>
20 <?PHP include_once('footer.php');