จะรอผู้มีความรู้ครับ คือว่าผมมี 2 ฟอร์ม ฟอร์มที่ 1 เอาไว้กรอกข้อมูตัวอย่างเช่น เลขเครื่อง 01 แถว 3 คอลัมน์ B แล้วก็บันทึกข้อมูล
<html>
<head>
<title> PONG </title>
</head>
<body>
<?php
$arrRow = range(1,10); // สมมติให้มีแถวตั้งแต่ 1 - 10
$arrCol = range('A','H'); // สมมติให้มีคอลัมน์ตั้งแต่ A - H
/* ตัวอย่าชุดข้อมูลที่ query มาจาก Database */
$data[3] = array(
"B" => "01",
"E" => "03",
"F" => "15"
);
$data[6] = array(
"A" => "08",
"B" => "14",
"G" => "24"
);
/* ตัวอย่าชุดข้อมูลที่ query มาจาก Database */
echo '<table cellspacing="5" border="1"><tr><th> </th>';
foreach($arrCol as $col)
{
echo '<th>',$col,'</th>';
}
echo '</tr>';
foreach($arrRow as $row)
{
echo '<tr><td>',$row,'</td>';
foreach($arrCol as $col)
{
echo '<td style="padding:5px;">';
echo (!empty($data[$row][$col])) ? $data[$row][$col] : ' ';
echo '</td>';
}
echo '</tr>';
}
echo '</table>';
?>
</body>
</html>
เอาไปประยุกต์นะครับ ถ้าจะให้ง่ายก็ เมื่ออยู่ ณ แถวไหนและคอลัมน์ไหน เราก็ query เอาข้อมูลที่มีค่า แถวและคอลัมน์ ตรงกับค่า $row และ $col
เช่น
select * form table where row='$row' and col='$col'
ถ้ามันไม่มีมันก็ไม่แสดงไง
Date :
9 ก.ค. 2551 10:19:15
By :
Apache
ขอบคุณนะครับ ทุกคนที่ให้สิ่งดีๆ กับผม
Date :
9 ก.ค. 2551 10:33:07
By :
ขอบคุณจากใจ
<?php
include("db/connect.php");
$room_cid = $_GET['room_cid'];
$sql = "SELECT num_row ,num_col FROM room_cat where room_cid = $room_cid";
$table = mysql_query($sql) or die(" error : $sql");
$row = mysql_fetch_array($table);
$num_row = $row['num_row'];
$num_col = $row['num_col'];
if($row > 0)
{
echo '<center><table cellspacing="5" width ="80%" border="1">';
echo '<tr>';
for($i=1;$i<=$num_row;$i++)
{
echo '<tr>';
for($c=1;$c<=$num_col;$c++)
{
echo "<td></td>";//ตรงนี้จะให้แสดงเลขครื่องที่ตำแหน่งต่างๆ
}
echo '</tr>';
}
echo '</table></center>';
}
?>
คือว่าโค๊ดที่เขียนขึ้นมันเป็นแค่คอลัมน์และแถวครับ
อันนี้คือข้อมูลที่ทำ มันได้เป็นอย่างงี้ครับ
01 01 01 01 01
01 01 01 01 01
01 01 01 01 01
แต่มันไม่รู้ว่าจะแทรกหรือทำเป็น array ยังไงเพื่อให้ได้หัวคอลัมน์เป็น A-Z แถว 1-2 อ่ะครับ
อยากได้อยากให้เป็นอย่างงี้ครับ
A B C D E F
1 01 02
2
3 04
4
ยังไงก็รบกวนผู้ใจบุญดูและแก้ไข หรืออธิบายให้หน่อยนะครับ ขอบคุณมากๆ ครับผม
Date :
9 ก.ค. 2551 15:23:46
By :
คนมีความรู้น้อย
Load balance : Server 05