-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiments.php
30 lines (28 loc) · 928 Bytes
/
experiments.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php require_once("../includes/session.php"); ?>
<?php require_once("../includes/db_connection.php"); ?>
<?php require_once("../includes/functions.php"); ?>
<?php confirm_logged_in(); ?>
<?php
$exp_set = find_all_experiments();
$i=1;
?>
<?php include("../includes/header.php"); ?>
<div class="container">
<h2>Experiments List</h2><br />
<table class="table table-bordered">
<tr>
<th style="text-align: left;">#</th>
<th style="text-align: left;">Username</th>
<th style="text-align: left;">Actions</th>
</tr>
<?php while($exp = mysqli_fetch_assoc($exp_set)) { ?>
<tr><?php
echo "<td>" . $i++ . "</td>";
?>
<td><?php echo htmlentities($exp["name"]); ?></td>
<td><a href="view_experiment.php?id=<?php echo urlencode($exp["id"]); ?>">View</a></td>
</tr>
<?php } ?>
</table>
</div>
<?php include("../includes/footer.php"); ?>