You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
<?php
|
|
if (isset($_REQUEST["function_name"])) {
|
|
$function_name = $_REQUEST["function_name"];
|
|
$function_flag = True;
|
|
}else{
|
|
$function_name = "";
|
|
$function_flag = False;
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
|
<script src="../css/jquery.min.js"></script>
|
|
<script src="../css/bootstrap.min.js"></script>
|
|
|
|
<script src="../css/jquery.dataTables.min.js"></script>
|
|
<script src="../css/dataTables.bootstrap4.min.js"></script>
|
|
|
|
<script src="function.js"></script>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#table_index').DataTable();
|
|
$('#account').html()
|
|
} );
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-inverse">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="#">masada</a>
|
|
</div>
|
|
|
|
<div class="header-right">
|
|
<a class="navbar-brand" href="login.php" id="account">退出登錄</a>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
|