| Server IP : 61.19.30.66 / Your IP : 216.73.216.59 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/gpa/students/qr/ |
Upload File : |
<?
require_once "head.php";
require_once "config/connectdb.php";
require_once "config/configuser.inc.php";
?>
<?php
$idu =$objResult["Username"];
$cllass =$objResult["cllass"];
$activity =$objResult["activity"];
$room =$objResult["Password"];
?>
<?php
$f = "visit.php";
if(!file_exists($f)){
touch($f);
$handle = fopen($f, "w" ) ;
fwrite($handle,0) ;
fclose ($handle);
}
include('libs/phpqrcode/qrlib.php');
function getUsernameFromEmail($email) {
$find = '@';
$pos = strpos($email, $find);
$username = substr($email, 0, $pos);
return $username;
}
if(isset($_POST['submit']) ) {
$tempDir = 'temp/';
$email = $_POST['mail'];
$subject = $_POST['subject'];
$filename = $room;
$body = $_POST['msg'];
$codeContents =urlencode($body);
QRcode::png($codeContents, $tempDir.''.$filename.'.png', QR_ECLEVEL_L, 5);
}
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>ID STUDENT</title>
<link rel="stylesheet" href="libs/css/bootstrap.min.css">
<link rel="stylesheet" href="libs/style.css">
<script src="libs/navbarclock.js"></script>
</head>
<body>
<a href="../user_page.php"><font size='+2'>หน้าหลัก</font></a>
<div class="myoutput">
<h3><strong></strong></h3>
<div class="input-field">
<h3>ID Student</h3>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" >
<div class="form-group">
<label>Code</label>
<input type="password" class="form-control" name="msg" style="width:13em;"
value="<?php echo $room; ?>" readonly=readonly></textarea>
</div>
<div class="form-group">
<input type="submit" name="submit" class="btn btn-primary submitBtn" style="width:20em; margin:0;" />
</div>
</form>
</div>
<?php
if(!isset($filename)){
$filename = "author";
}
?>
<div class="qr-field">
<h2 style="text-align:center">QR Code Student</h2>
<center>
<div class="qrframe" style="border:2px solid black; width:210px; height:210px;">
<?php echo '<img src="temp/'. @$filename.'.png" style="width:200px; height:200px;"><br>'; ?>
</div>
<a class="btn btn-primary submitBtn" style="width:210px; margin:5px 0;" href="download.php?file=<?php echo $filename; ?>.png ">Download QR Code</a>
</center>
</div>
<div class = "dllink" style="text-align:center;margin:-100px 0px 50px 0px;">
<br>
<h4>gpa.klws.ac.th</h4>
</div>
</div>
</body>
<footer></footer>
</html>