| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/kvt_site_bk/craneblue.ga/cbawards/ |
Upload File : |
<html>
<?php
include('db.php');
session_start();
if(isset($_SESSION['id']))
{
$my_id = $_SESSION['id'];
}
////////////////////////////////////////////////////////////////////////////////////
?>
<input id="my_id" style="display:none;" value="<?php echo"$my_id";?>" />
<head>
<title>cbawards</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main_css/selection.css" />
</head>
<body>
<div class="main_container" >
<img src="main_icon/cb_awad_log.png" class="cb_awad_log" />
<!--h1 class="main_title" >CB Awards</h1-->
<div class="sub_title" >Participants waiting for selection</div>
<div class="sub_container_div" >
<div class="main_vid_div" >
<div id="show_all_vid_output"></div>
</div>
</div>
</div>
<script>
show_all_vid();
function show_all_vid()
{
//my_id = document.getElementById('my_id').value;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","auto_page.php?status=disp_all_vid",false);
xmlhttp.send(null);
document.getElementById('show_all_vid_output').innerHTML =xmlhttp.responseText;
//alert(34);
}
function sel_vid_competitionR(svcr)
{
vid_id = svcr;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","auto_page.php?vid_id="+vid_id+"&&status=sel_vid_competitionR",false);
xmlhttp.send(null);
//document.getElementById('show_all_vid_output').innerHTML =xmlhttp.responseText;
alert('Video seleceted Red');
}
function sel_vid_competitionB(svcb)
{
vid_id = svcb; alert(44);
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET","auto_page.php?vid_id="+vid_id+"&&status=sel_vid_competitionB",false);
xmlhttp.send(null);
//document.getElementById('show_all_vid_output').innerHTML =xmlhttp.responseText;
alert('Video seleceted Blue');
}
</script>
</body>
</html>