Added edit button to viewevent.php, cleaned up other misc files.
This commit is contained in:
@ -9,7 +9,7 @@ if( $_SESSION['access'] != 1 ) {
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="css/sestyle.css">
|
||||
<link rel="shortcut icon" href="favicon.ico" />
|
||||
<title>BMS Events</title>
|
||||
</head>
|
||||
@ -21,8 +21,8 @@ if( $_SESSION['access'] != 1 ) {
|
||||
echo "Hello, ";
|
||||
print_r($_SESSION['uname']);
|
||||
}
|
||||
echo "<h2>View Event</h2>";
|
||||
include("includes/menu.php"); ?>
|
||||
echo "<h2>View Event</h2>";
|
||||
include("includes/menu.php"); ?>
|
||||
</div>
|
||||
<div class=content>
|
||||
<?php include "includes/db_config.php";
|
||||
@ -35,34 +35,41 @@ $eventid=$_GET['eventid'];
|
||||
$result1 = $conn1->query($sql1);
|
||||
if ($result1->num_rows >0){
|
||||
while ($row1 = $result1->fetch_assoc()) {
|
||||
echo "<br />";
|
||||
echo "<table align='center'><tr><td>";
|
||||
echo "Unit: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['unit_name']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Alert: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['alert_name']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Start Date and Time: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['date_time_start']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Currently Ongoing? ";
|
||||
echo "</td><td>";
|
||||
if($row1['is_ongoing'] ==1) {
|
||||
echo "Yes";
|
||||
} else {
|
||||
echo "No";
|
||||
}
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "End Date and Time: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['date_time_end']);
|
||||
echo "</td></tr></table>";
|
||||
}
|
||||
} else {
|
||||
echo "<br />";
|
||||
echo "<table align='center'><tr><td>";
|
||||
echo "Unit: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['unit_name']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Alert: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['alert_name']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Description: ";
|
||||
echo "</td><td>";
|
||||
echo nl2br($row1['description']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Start Date and Time: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['date_time_start']);
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "Currently Ongoing? ";
|
||||
echo "</td><td>";
|
||||
if($row1['is_ongoing'] ==1) {
|
||||
echo "Yes";
|
||||
} else {
|
||||
echo "No";
|
||||
}
|
||||
echo "</td></tr><tr><td>";
|
||||
echo "End Date and Time: ";
|
||||
echo "</td><td>";
|
||||
print_r($row1['date_time_end']);
|
||||
echo "</td></tr>";
|
||||
echo "<tr><td colspan='2' class='ui-helper-center'>";
|
||||
echo "<a href=editevent.php?event_id=".$row1['event_id'].">Edit Event</a>";
|
||||
echo "</td></tr></table>";
|
||||
}
|
||||
} else {
|
||||
echo "<h4>ERROR Event ID Not Found</h4>";
|
||||
}
|
||||
if ($conn1->connect_error) {
|
||||
|
Reference in New Issue
Block a user