| Server IP : 50.63.8.194 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT P3NWVPWEB026 10.0 build 17763 (Windows Server 2016) AMD64 User : IWPD_7824(SpiPanel) ( 0) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : G:/PleskVhosts/polyprep.in/mmitshamli.ac.in/admin/ |
Upload File : |
<?php
use GuzzleHttp\Psr7\Response;
include 'connection.php';
if($_POST['t']=='dept')
{
$id=$_POST['id'];
$q="select * from tbl_department where dept_id='$id'";
// echo $q;
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
else if($_POST['t']=='teacher')
{
$tid=$_POST['id'];
//echo $tid;
$q="select * from tbl_teacher left join tbl_department on tbl_teacher.dept_id=tbl_department.dept_id where tech_id='$tid' ";
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='nonteacher')
{
$nid=$_POST['id'];
$q="select * from tbl_nonteacher where non_id='$nid'";
// echo $q;
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='aictedoc')
{
$docid=$_POST['id'];
$q="select * from tbl_aicte where doc_id='$docid'";
//echo json_encode($q);
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='moudoc')
{
$docid=$_POST['id'];
$q="select * from tbl_mou where doc_id='$docid'";
//echo json_encode($q);
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='rtidoc')
{
$docid=$_POST['id'];
$q="select * from tbl_rti where doc_id='$docid'";
//echo json_encode($q);
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='videoupdate')
{
$vid=$_POST['id'];
$q="select * from tbl_video left join tbl_department on tbl_video.branch=tbl_department.dept_id";
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
if($_POST['t']=='placementupdate')
{
$vid=$_POST['id'];
$q="select * from tbl_placement where place_id='$vid'";
$res=mysqli_query($dbCon,$q);
$row=mysqli_fetch_array($res);
echo json_encode($row);
}
?>