Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.135.214.226
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<!-- <link rel="stylesheet" href="/resources/demos/style.css"> -->
<!-- <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> -->
<!--<script>
$( function()
{
$( "#datepicker" ).datepicker();
} );
</script>!-->
<script>
function LoadData()
{
$.ajax({
type: "POST",
async: false,
data: "screen=admdisp",
url: "admdata.php",
success: function(responce)
{
$("#tabledata").html(responce);
}
});
}
function updatedata(adm_app)
{
var gender = $(`#gender_${adm_app}`).val();
$.ajax({
type: "POST",
async: false,
data: "screen=admupd"+"&adm_app="+adm_app+"&gender="+gender,
url: "admdata.php",
success: function(responce)
{
alert(responce);
}
});
}
</script>
</head>
<body onload="LoadData()">
<br><br>
<div id="tabledata">
</div>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 'on');
?>
</body>
</html>
|