-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 919a355
Showing
94 changed files
with
3,241 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?php | ||
error_reporting(0); | ||
include "admin_header.php"; | ||
?> | ||
<title>event</title> | ||
<?php | ||
$msg = ""; | ||
|
||
// If upload button is clicked ... | ||
if (isset($_POST['submit'])) { | ||
|
||
$filename = $_FILES["event_banner"]["name"]; | ||
$tempname = $_FILES["event_banner"]["tmp_name"]; | ||
$text = $_POST['des']; | ||
$title = $_POST['title']; | ||
$folder = "assets/images/event/" . $filename; | ||
|
||
|
||
if (!$db) { | ||
die("connection failed"); | ||
} | ||
$msg = "connected successfully"; | ||
|
||
|
||
// Get all the submitted data from the form | ||
$sql = "INSERT INTO event (title, event_banner, comment) VALUES ('$title','$filename','$text')"; | ||
|
||
// Execute query | ||
mysqli_query($db, $sql); | ||
|
||
// move the uploaded image into the folder: event | ||
if (move_uploaded_file($tempname, $folder)) { | ||
$msg = "Image uploaded successfully"; | ||
} else { | ||
$msg = "Failed to upload image"; | ||
} | ||
} | ||
|
||
$result = mysqli_query($db, "SELECT * FROM image"); | ||
//delete row | ||
|
||
if (isset($_POST['delete'])) { | ||
|
||
$sql1 = "DELETE FROM event WHERE id = '{$_REQUEST['id']}'"; | ||
if (mysqli_query($db, $sql1)) { | ||
$msg = "record deleted successfully"; | ||
} else { | ||
$msg = "Failed to delete record"; | ||
} | ||
} | ||
?> | ||
<!--to avoid resubmission of form--> | ||
<script> | ||
if (window.history.replaceState) { | ||
window.history.replaceState(null, null, window.location.href); | ||
} | ||
</script> | ||
<!--custom css--> | ||
<link rel="stylesheet" type="text/css" href="assets/css/admin_notice_event.css"> | ||
|
||
<div class="container-fluid"> | ||
<div class="row"> | ||
<!--form start--> | ||
<div class="col-12 col-lg-3 order-lg-2"> | ||
<form class="form-container" method="post" action="admin_event.php" enctype="multipart/form-data"> | ||
<input type="hidden" name="size" value="1000000"> | ||
<div class="form-group"> | ||
<label>Title</label> | ||
<input type="text" name="title" class="form-control" placeholder="Event title" required> | ||
</div> | ||
<div class="form-group"> | ||
<label>Upload Event Banner</label> | ||
<input type="file" name="event_banner" class="form-control-file" required> | ||
</div> | ||
<div class="form-group"> | ||
<label>Description:</label> | ||
<textarea class="form-control" name="des" rows="5"></textarea> | ||
</div> | ||
<div class="form-group"> | ||
<input class="form-control" type="submit" name="submit" value="submit"> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<!-------------preview-------------------> | ||
<div class="col-12 col-lg-9 order-lg-1"> | ||
<div class="preview"> | ||
|
||
<?PHP | ||
$sql2 = "SELECT * FROM event"; | ||
$result1 = mysqli_query($db, $sql2); | ||
|
||
while ($row = mysqli_fetch_array($result1)) { | ||
echo "<div class='container'>"; | ||
echo "<div class='row' id='img'>"; | ||
echo "<div class='col-12 col-md-6'>"; | ||
echo '<form action="" method="POST" class="delete"><input type="hidden" name="id" value=' . $row['id'] . '><input type="submit" name="delete" value= "Delete"></form>'; | ||
echo "<h1>" . $row['title'] . "</h1>"; | ||
echo '<img class="myimg" src="assets/images/event/' . $row["event_banner"] . '" onClick="modal(event)"/>'; | ||
echo '<div id="myModal" class="modal">'; | ||
echo '<span class="close">×</span>'; | ||
echo '<img class="modal-content" id="img01" />'; | ||
echo '</div>'; | ||
echo "</div>"; | ||
echo "<div class='col-12 col-md-6'>"; | ||
echo "<h1>Description:</h1>"; | ||
echo "<p>" . $row['comment'] . "</p>"; | ||
echo "</div>"; | ||
echo "</div>"; | ||
echo "</div>"; | ||
echo '<script src="assets/js/fullscreen.js"></script>'; | ||
} | ||
|
||
|
||
?> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
<script src="assets/js/fullscreen.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
<?php | ||
error_reporting(0); | ||
include "admin_header.php"; | ||
?> | ||
<title>event</title> | ||
<?php | ||
$msg = ""; | ||
|
||
// If upload button is clicked ... | ||
if (isset($_POST['submit'])) { | ||
|
||
$filename = $_FILES["event_banner"]["name"]; | ||
$tempname = $_FILES["event_banner"]["tmp_name"]; | ||
$text = $_POST['des']; | ||
$title = $_POST['title']; | ||
$link = $_POST['link']; | ||
$folder = "assets/images/event/".$filename; | ||
|
||
|
||
if(!$db){ | ||
die("connection failed"); | ||
} | ||
$msg= "connected successfully"; | ||
|
||
|
||
// Get all the submitted data from the form | ||
$sql = "INSERT INTO event (title, event_banner, comment, registration) VALUES ('$title','$filename','$text','$link')"; | ||
|
||
// Execute query | ||
mysqli_query($db, $sql); | ||
|
||
// move the uploaded image into the folder: event | ||
if (move_uploaded_file($tempname, $folder)) { | ||
$msg = "Image uploaded successfully"; | ||
}else{ | ||
$msg = "Failed to upload image"; | ||
} | ||
} | ||
|
||
$result = mysqli_query($db, "SELECT * FROM image"); | ||
//delete row | ||
|
||
if (isset($_POST['delete'])) { | ||
|
||
$sql1 ="DELETE FROM event WHERE id = '{$_REQUEST['id']}'"; | ||
if(mysqli_query($db, $sql1)){ | ||
$msg= "record deleted successfully"; | ||
} | ||
else{ | ||
$msg="Failed to delete record"; | ||
} | ||
} | ||
?> | ||
<!--to avoid resubmission of form--> | ||
<script> | ||
if ( window.history.replaceState ) { | ||
window.history.replaceState( null, null, window.location.href ); | ||
} | ||
</script> | ||
<!--custom css--> | ||
<link rel="stylesheet" type="text/css" href="assets/css/admin_notice_event.css"> | ||
|
||
<div class="container-fluid"> | ||
<div class="row"> | ||
<!--form start--> | ||
<div class="col-12 col-lg-3 order-lg-2"> | ||
<form class="form-container" method="post" action="admin_event.php" enctype="multipart/form-data"> | ||
<input type="hidden" name="size" value="1000000"> | ||
<div class="form-group"> | ||
<label>Title</label> | ||
<input type="text" name="title" class="form-control" placeholder="Event title" required> | ||
</div> | ||
<div class="form-group"> | ||
<label>Upload Event Banner</label> | ||
<input type="file" name="event_banner" class="form-control-file" required> | ||
</div> | ||
<div class="form-group"> | ||
<label>Registration Link</label> | ||
<input type="url" name="link" class="form-control" placeholder="link" required> | ||
</div> | ||
<div class="form-group"> | ||
<label>Description:</label> | ||
<textarea class="form-control" name="des" rows="5" ></textarea> | ||
</div> | ||
<div class="form-group"> | ||
<input class="form-control" type="submit" name="submit" value="submit"> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<!-------------preview-------------------> | ||
<div class="col-12 col-lg-9 order-lg-1"> | ||
<div class="preview"> | ||
|
||
<?PHP | ||
$sql2 = "SELECT * FROM event ORDER BY id DESC"; | ||
$result1 = mysqli_query($db, $sql2); | ||
|
||
while($row = mysqli_fetch_array($result1)) { | ||
echo "<div class='container'>"; | ||
echo "<div class='row' id='img'>"; | ||
echo"<div class='col-12 col-md-6'>"; | ||
echo '<form action="" method="POST" class="delete"><input type="hidden" name="id" value=' .$row['id']. '><input type="submit" name="delete" value= "Delete"></form>'; | ||
echo "<h1>".$row['title']."</h1>"; | ||
echo'<img class="myimg" src="assets/images/event/'.$row["event_banner"].'" onClick="modal(event)"/>'; | ||
echo'<div id="myModal" class="modal" style="padding:0px;">'; | ||
echo'<span class="close">×</span>'; | ||
echo'<img class="modal-content" id="img01" style="height:93vh; width:100%; margin-top:7vh; border:none;" />'; | ||
echo'</div>'; | ||
|
||
|
||
echo"</div>"; | ||
echo"<div class='col-12 col-md-6'>"; | ||
echo "<h1>Description:</h1>"; | ||
echo "<p>".$row['comment']."</p>"; | ||
echo"<a href=".$row['registration']." style='text-decoration:none; font-size:15px;'>Register here...</a>"; | ||
echo"</div>"; | ||
echo"</div>"; | ||
echo"</div>"; | ||
echo'<script src="assets/js/fullscreen.js"></script>'; | ||
} | ||
|
||
|
||
?> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
<script src="assets/js/fullscreen.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?php | ||
session_start(); | ||
include "config.php"; | ||
$user = $_SESSION['username']; | ||
if($user==true) | ||
{ | ||
|
||
} | ||
else | ||
{ | ||
header('location:admin_login.php'); | ||
|
||
} | ||
$sql = "SELECT * FROM admin_sign_in WHERE email='$user'"; | ||
$result= mysqli_query($db, $sql); | ||
$data = mysqli_fetch_assoc($result); | ||
?> | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="assets/css/admin_header.css"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> | ||
<title></title> | ||
</head> | ||
<body> | ||
<div id="mySidepanel" class="sidepanel"> | ||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"><i class="fa fa-bars"></i></a> | ||
<div class="panelcontent"> | ||
<a href="admin_notice.php"><i class="fa fa-pencil-square-o"></i></i> notice</a> | ||
<a href="admin_event.php"><i class="fa fa-calendar"></i></i> events</a> | ||
<a href="ct_marks.php"><i class="fa fa-wpforms"></i> CT marks</a> | ||
<a href="#"><i class="fa fa-id-card"></i> attendance</a> | ||
<a href="admin_notes.php"><i class="fa fa-pencil"></i> notes</a> | ||
<a href="admin_quepaper.php"><i class="fa fa-book"></i> question<br> paper</a> | ||
</div> | ||
</div> | ||
|
||
|
||
<!-- As a heading --> | ||
<nav class="navbar sticky-top navbar-dark bg-primary"> | ||
<button class="openbtn" onclick="openNav()"><i class="fa fa-bars"></i></button> | ||
<h2>Relier</h2> | ||
<a href="admin_signout.php"id="signout"><i class="fa fa-sign-out"></i>Sign out</a> | ||
</nav> | ||
|
||
<!-- Optional JavaScript --> | ||
<!--for active page--> | ||
<script type=text/javascript> | ||
for (var i = 0; i < document.links.length; i++) { | ||
if (document.links[i].href == document.URL) { | ||
document.links[i].className = 'active'; | ||
} | ||
} | ||
</script> | ||
<!--custom js--> | ||
<script src="assets/js/header.js"></script> | ||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.