| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/www/news/datacenter/admin/Export/ |
Upload File : |
<?php
//ส่งออกรายชื่อนักเรียน
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
date_default_timezone_set('Asia/Bangkok');
require_once('../config.php');
$u="";
$output = '';
$sql= $mysqli->query("SELECT * FROM `read_data` INNER JOIN `student_regis` ON `student_regis`.`r_idcard` = `read_data`.`cid` where status='stu'");
if(mysqli_num_rows($sql) > 0)
{
$output .= '
<table class="table" bordered="1" border="1">
<tr>
<th>เลขประชาชน</th>
<th>คำนำชื่อ</th>
<th>ชื่อ</th>
<th>นามสกุล</th>
<th>วันเกิด</th>
<th>คำนำ(EN)</th>
<th>ชื่อ(EN)</th>
<th>นามสกุล(EN)</th>
<th>บ้านเลขที่</th>
<th>หมู่ที่</th>
<th>ตรอก</th>
<th>ซอย</th>
<th>ถนน</th>
<th>ตำบล</th>
<th>อำเภอ</th>
<th>จังหวัด</th>
<th>บัตรหมดอายุ</th>
<th>สมัครชั้น</th>
<th>บิดา</th>
<th>อาชีพ</th>
<th>โทรศัพท์</th>
<th>มารดา</th>
<th>อาชีพ</th>
<th>โทรศัพท์</th>
</tr>
';
while($row = mysqli_fetch_array($sql))
{
$output .= '
<tr>
<td>'.$u.' '.$row["cid"].'</td>
<td>'.$row["thnamep"].'</td>
<td>'.$row["thnamef"].'</td>
<td>'.$row["thnamel"].'</td>
<td>'.$row["dday"].'/'.$row["mday"].'/'.$row["yday"].'</td>
<td>'.$row["ennamep"].'</td>
<td>'.$row["ennamef"].'</td>
<td>'.$row["ennamel"].'</td>
<td>'.$row["addressn"].'</td>
<td>'.$row["addressm"].'</td>
<td>'.$row["address2"].'</td>
<td>'.$row["address3"].'</td>
<td>'.$row["address4"].'</td>
<td>'.$row["addresst"].'</td>
<td>'.$row["addressa"].'</td>
<td>'.$row["addressp"].'</td>
<td>'.$row["expire"].'</td>
<td>'.$row["r_class"].'</td>
<td>'.$row["r_fn"].' '.$row["r_fs"].'</td>
<td>'.$row["r_fa"].'</td>
<td>'.$u.' '.$row["r_ft"].'</td>
<td>'.$row["r_mn"].' '.$row["r_ms"].'</td>
<td>'.$row["r_ma"].'</td>
<td>'.$u.' '.$row["r_mt"].'</td>
</tr>
';
}
$output .= '</table>';
$file = "students_" . date('Y-m-d') . ".xls";
header('Content-Disposition: attachment; filename='.$file);
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header("Content-Transfer-Encoding: BINARY");
echo $output;
}
?>