<?php
session_start
();
error_reporting(E_ALL);
include(
"PFBC/Form.php");

if(isset(
$_POST["form"])) {
    
Form::isValid($_POST["form"]);
    
header("Location: " $_SERVER["PHP_SELF"]);
    exit();    
}

include(
"header.php");
$version file_get_contents("version");
?>
<ul class="breadcrumb">
    <img src="img/home.png" width="32" height="32"> &nbsp;&nbsp;<b>ผู้เข้าใช้งานระบบ ::</b>&nbsp;&nbsp;<b>ID:</b>&nbsp;<?=$_GET['User']?> <font size="6"><span class="label label-info"><?=$_GET['name']?></span></font>
</ul>
<script>
    function goBack() {
        window.history.back();
    }
</script>
<iframe src="dataReport.php?name=<?=$_GET['name']?>&&User=<?=$_GET['User']?>" height="600" width="100%"></iframe>
<?php
include("footer.php");
?>