Viewing file: internship_requests.php (9.39 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php session_start();
include('includes/header.php');
?>
<?php
// Storing session data
$_SESSION["role"];
if(!isset($_SESSION["role"]))
{
header("location:admin_login.php");
?>
<script type="text/javascript">
window.location.href = "admin_login.php";
</script>
<?php
}
else
{
?>
<div class="page-container">
<div class="left-content">
<div class="mother-grid-inner">
<!--header start here-->
<div class="header-main">
<div class="header-left">
<div class="logo-name">
<a href="admin_index.php"> <h3>SICS ADMIN</h3>
</br>
</a>
</div>
<div class="clearfix"> </div>
</div>
<!--notification menu end -->
<div class="profile_details">
<ul>
<li class="dropdown profile_details_drop">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<div class="profile_img">
<span class="prfil-img"><!-- <img src="images/p1.png" alt=""> --> </span>
<div class="user-name">
<p>Srishti Innovative</p>
<span><?php echo $_SESSION["name"];?></span>
</div>
<i class="fa fa-angle-down lnr"></i>
<i class="fa fa-angle-up lnr"></i>
<div class="clearfix"></div>
</div>
</a>
<ul class="dropdown-menu drp-mnu">
<!-- <li> <a href="#"><i class="fa fa-cog"></i> Settings</a> </li>
<li> <a href="#"><i class="fa fa-user"></i> Profile</a> </li> -->
<li> <a href="logout.php"><i class="fa fa-sign-out"></i> Logout</a> </li>
</ul>
</li>
</ul>
</div>
</div>
<div class="inner-block">
<h3 style="text-align: left;color: #337ab7;margin-bottom: 1%;">Internship Requests</h3>
<?php
$query = "select * from requests where request_type=2 order by created_at desc";
$result = $con->query($query);
?>
<table id="requests" class="table table-striped table-bordered table-condensed">
<thead style="background: #7ab9f3;">
<tr>
<th>Sl.No</th>
<th>Name</th>
<th>Email</th>
<th>Contact</th>
<th>Course</th>
<th>Date</th>
<th>Action</th>
<th>Message</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while ($row = $result->fetch_assoc()) {
?>
<tr id="row_<?php echo $row["id"]; ?>">
<td><?php echo $i; ?></td>
<td><?php
$user_id=$row["user_id"];
$query1 = "select * from user_details where user_id='$user_id' ";
$result1 = $con->query($query1);
while ($row1 = $result1->fetch_assoc()) {
echo $name=$row1["name"];
}
?>
</td>
<td><?php
$user_id=$row["user_id"];
$query1 = "select * from user_details where user_id='$user_id' ";
$result1 = $con->query($query1);
while ($row1 = $result1->fetch_assoc()) {
echo $email=$row1["email"];
}
?></td>
<td><?php
$user_id=$row["user_id"];
$query1 = "select * from user_details where user_id='$user_id' ";
$result1 = $con->query($query1);
while ($row1 = $result1->fetch_assoc()) {
echo $phone=$row1["phone"];
}
?></td>
<td><?php echo $row["course"]; ?></td>
<td>
<?php echo date('d-m-Y',strtotime($row["created_at"])); ?>
</td>
<td>
<?php if($row["request_status"]==0||$row["request_status"]==null){ ?>
<a href="internship_activate.php?id=<?php echo $row['id'];?>" class="btn btn-success" > Activate</a>
<?php } else{?>
<a href="internship_deactivate.php?id=<?php echo $row['id'];?>" class="btn btn-warning">Deactivate </a>
<?php }?>
<br><br>
<button type="button" data-id="<?php echo $row["id"]; ?>" class="btn btn-danger delete" >Delete </button>
</td>
<td><form action="sendintern_message.php" method="post">
<input type="hidden" name="toid" value="<?php echo $row['user_id'];?>">
<input type="hidden" name="fromid" value="<?php echo $stf;?>">
<textarea name="msg"></textarea>
<input type="submit" name="submit" value="Send">
</form></td>
<?php
$i++;
}
?>
</tr>
</tbody>
</table>
</div>
</div>
<!--heder end here-->
<!-- script-for sticky-nav -->
<div class="inner-block">
</section>
</div>
</div>
</div>
<!--slider menu-->
<?php include('includes/sidebar.php'); ?>
<!--slide bar menu end here-->
<?php include('includes/footer.php'); ?>
<script>
$(document).ready(function () {
$('#requests').DataTable();
var navoffeset = $(".header-main").offset().top;
$(window).scroll(function () {
var scrollpos = $(window).scrollTop();
if (scrollpos >= navoffeset) {
$(".header-main").addClass("fixed");
$(".sidebar-menu").addClass("fixed");
} else {
$(".header-main").removeClass("fixed");
$(".sidebar-menu").removeClass("fixed");
}
});
$('.delete').click(function() {
var id= $(this).data('id');
swal({
title: "Are you sure?",
text: "You want to delete this request?",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes",
cancelButtonText: "No",
closeOnConfirm: false,
closeOnCancel: false
},
function(isConfirm){
if (isConfirm) {
$.ajax({
url: 'delete_otherrequest.php',
type: "POST",
data: { id:id },
success: function(response) {
if(response!=0){
swal("Successfully deleted !","success");
$('#row_'+id).hide();
} else{
swal("Something went wrong !", "", "error");
}
}
});
} else {
swal("Cancelled", "", "error");
}
});
});
});
</script>
<?php
}
?>
|