|
|
|
ต้องการเลือกนักศึกษา 2 คนค่ะ แล้วให้นำนักศึกษา 2 คนที่เลือก ออก word หน้าเดี่ยวกันค่ะ แต่ติดปัญหาพอเลือกแล้วมันดันออกword 2 หน้าค่ะแล้วชื่อสองคนที่เลือกก็แสดงคนเดี่ยวทั้งสองหน้าเลยค่ะใครทราบช่วยดูโค๊ดที่นะค่ะ |
|
|
|
|
|
|
|
ไม่มีใครตอบเลยแย่แน่
|
|
|
|
|
Date :
2010-09-26 20:42:57 |
By :
pupae010 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแบบนี้ดูครับ ผมยังไม่ได้ลองดูหน่ะ
Code (PHP)
<?
header("Content-Type: application/msword");
header('Content-Disposition: attachment; filename="filename.doc"');
//???????????????????
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("training_system");
$table_1 = "<table border=0 width=100%>";
$table_1 .= "<tr>";
$table_1 .= "<td width= 10% ><font face=Angsana New size=4pt>·Õè ÁÇÍ.</td>";
$table_1 .= "<td width= 5%>";
for($i=0;$i<count($_POST["chkDel"]);$i++)
{
if($_POST["chkDel"][$i] != "")
{
$strSQL = "select company.*,student.* from company ,student,contact_com,major where company.no_company=contact_com.no_company AND contact_com.studentId=student.studentId AND major.no_major=student.no_major AND company.com_name ='".$_POST["chkDel"][$i]."'";
$objQuery = mysql_query($strSQL)or die(mysql_error());
$row = mysql_fetch_array($objQuery);
echo $row['stu_name'];
}
}
$table_1 .= "</td>";
$table_1 .= "<td width= 50%></td>";
$table_1 .= "<td></td></font>";
$table_1 .= "</tr>";
$table_1 .= "</table> <br>";
echo $table_1;
?>
|
|
|
|
|
Date :
2010-09-27 08:49:15 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|