|
|
|
ผมจะดึงข้อมูลจากหลายๆตารางมาโชว์ใน excel ที่ หน้าเดียวกันยังไงครับ ช่วยดูให้หน่อยครับ |
|
|
|
|
|
|
|
<?
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename="testing.csv"');
$host="localhost";
$username="root";
$password="1234";
$db="question";
$tb1="person";
$tb2="service";
$tb3="detail";
$tb4="suggestion";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
echo "44444,คำถาม,ตัวเลือกที่ 1,ตัวเลือกที่ 2,ตัวเลือกที่ 3,ตัวเลือกที่ 4,ตัวเลือกที่ถูก,\n";
$sql = "select * from $tb1";
$dbquery = mysql_query($sql);
$num_rows = mysql_num_rows($dbquery);
$i=0;
while ($i < $num_rows)
{
$result= mysql_fetch_array($dbquery);
echo "$result[id_detail],$result[id_project],$result[r3_1_1],$result[r3_1_2],$result[r3_1_3],$result[r3_1_4],$result[r3_1_5],\n";
$i++;
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-05-29 10:53:45 |
By :
nuttawut49172185 |
View :
1735 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ใช้การ join table ครับ
|
|
|
|
|
Date :
2009-05-29 13:54:16 |
By :
ail2geal2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2009-05-29 14:39:30 |
By :
nuttawut49172185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมสร้างฟอร์มใว้ในหน้าเดียวกัน 2 ฟอร์มครับ ถ้า ใส่ค่า ฟอร์มค้นหาแล้วให้อีกฟอร์มโชว์ ข้อมูล ผมต้อง select อย่างไรครับโดยให้ค่ามันออกมาตามที่ผมใส่ในฟอร์มแรกครับโดย select จากหลายตารางครับ แล้วคำสั้ง select นี้ต้องเขียนยังไงครับ ช่วยบอกที
|
|
|
|
|
Date :
2009-12-12 20:59:08 |
By :
Danniel |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|