|
|
|
ช่วยหน่อยนะค่ะ ต้องการ แสดงค่าตารางออกมาเป็นแนวนอนอ่าค่ะ |
|
|
|
|
|
|
|
คือหน้าฟอร์มเปนแบบนี้
พอเลือก listbox แล้วมันเป็นแบบนี้อ่าค่ะ
นี่คือโค้ด หน้า index
Code (PHP)
<html>
<head>
<script>
function showUser(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
}
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "getuser.php?q=" + str, true);
xmlhttp.send();
}
</script>
<script>
function showUser2(str) {
if (str == "") {
document.getElementById("txtHint2").innerHTML = "";
return;
}
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint2").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "getuser2.php?q2=" + str, true);
xmlhttp.send();
}
</script>
</head>
<body>
<br>
<table border='1'>
<tr >
<td width="50" rowspan="2" align="center">วัตถุดิบ</td>
<td width="15" rowspan="2" align="center">CP%</td>
<td width="40" rowspan="2" align="center"><p>พลังงาน<br />
(kcal/kg.)</p></td>
<td width="40" rowspan="2" align="center">Cal</td>
<td colspan="11" align="center">กรดอะมิโน(%)</td>
<td width="37" rowspan="2" align="center">Lin</td>
<td width="37" rowspan="2" align="center">G+C</td>
<td width="40" rowspan="2" align="center">ราคา/kg</td>
<td width="40" rowspan="2" align="center">น้ำหนัก(kg)</td>
<td width="50" rowspan="2" align="center">ค่าใช้จ่าย<br />
(บาท)</td>
</tr>
<tr>
<td width="26" align="center">P</td>
<td width="35" align="center">Lys</td>
<td width="34" align="center">M+C</td>
<td width="30" align="center">Try</td>
<td width="25" align="center">Thr</td>
<td width="29" align="center">Iso</td>
<td width="26" align="center">Arg</td>
<td width="33" align="center">Lus</td>
<td width="29" align="center">P+T</td>
<td width="29" align="center">His</td>
<td width="33" align="center">Val</td>
</tr>
<tr>
<td>
<select name="users" onchange="showUser(this.value)">
<option value="0">เลือกวัตถุดิบ</option>
<?php
include 'connectDB.php';
$strSQL = "SELECT * FROM raw_material";
$objQuery = mysql_query($strSQL) or die("Error Query [" . $strSQL . "]");
while ($objResult = mysql_fetch_array($objQuery)) {
?>
<option value="<?= $objResult["rm_id"] ?>"><?= $objResult["rm_name"] ?></option>
<?php
}
mysql_close($objConnect);
?>
</select>
</td>
<td> <spin id="txtHint">
<input type="text" size="5">
<td><input type="text" name="cm1" size="5"></td>
<td><input type="text" name="cm2"size="5"></td>
<td><input type="text" name="cm3"size="5"></td>
<td><input type="text" name="cm4"size="5"></td>
<td><input type="text" name="cm5"size="5"></td>
<td><input type="text" name="cm6"size="5"></td>
<td><input type="text" name="cm7"size="5"></td>
<td><input type="text" name="cm8"size="5"></td>
<td><input type="text" name="cm9"size="5"></td>
<td><input type="text" name="cm10"size="5"></td>
<td><input type="text" name="cm11"size="5"></td>
<td><input type="text" name="cm12"size="5"></td>
<td><input type="text" name="cm13"size="5"></td>
<td><input type="text" name="cm14"size="5"></td>
<td><input type="text" name="cm15"size="5"></td>
<td><input type="text" name="cm16"size="5"></td>
<td><input type="text" name="cm17"size="5"></td>
<td><input type="text" name="cm18"size="5"></td>
</spin></td>
</tr>
</table>
</body>
</html>
ส่วนอันนี้คือ getuser.php
Code (PHP)
<?php
$q = intval($_GET['q']);
include 'connectDB.php';
//rm , have h where rm.rm_id = h.rm_id
$strSQL = "SELECT rw.rm_id as id ,h.NT_id as NT, h.nutrients as data "
. "FROM raw_material rw , have h "
. "WHERE rw.rm_id = h.rm_id "
. "and rw.rm_id = " . $q;
$objQuery = mysql_query($strSQL) or die("Error Query [" . $strSQL . "]");
while ($objResult = mysql_fetch_array($objQuery)) {
echo "<input type=text name= " . $objResult["NT"] . "' size=5 value='" . $objResult["data"] . "'> ";
}
if ($q == 0) {
echo '<td><input type="text" size="5"></td>
<td><input type="text" name="cm1" size="5"></td>
<td><input type="text" name="cm2"size="5"></td>
<td><input type="text" name="cm3"size="5"></td>
<td><input type="text" name="cm4"size="5"></td>
<td><input type="text" name="cm5"size="5"></td>
<td><input type="text" name="cm6"size="5"></td>
<td><input type="text" name="cm7"size="5"></td>
<td><input type="text" name="cm8"size="5"></td>
<td><input type="text" name="cm9"size="5"></td>
<td><input type="text" name="cm10"size="5"></td>
<td><input type="text" name="cm11"size="5"></td>
<td><input type="text" name="cm12"size="5"></td>
<td><input type="text" name="cm13"size="5"></td>
<td><input type="text" name="cm14"size="5"></td>
<td><input type="text" name="cm15"size="5"></td>
<td><input type="text" name="cm16"size="5"></td>
<td><input type="text" name="cm17"size="5"></td>
<td><input type="text" name="cm18"size="5"></td>
';
}
mysql_close($objConnect);
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-08-09 12:42:04 |
By :
paweenachom |
View :
884 |
Reply :
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108.<td> <spin id="txtHint">
109.<input type="text" size="5">
110.<td><input type="text" name="cm1" size="5"></td>
111.<td><input type="text" name="cm2"size="5"></td>
112.<td><input type="text" name="cm3"size="5"></td>
113.<td><input type="text" name="cm4"size="5"></td>
114.<td><input type="text" name="cm5"size="5"></td>
115.<td><input type="text" name="cm6"size="5"></td>
116.<td><input type="text" name="cm7"size="5"></td>
117.<td><input type="text" name="cm8"size="5"></td>
118.<td><input type="text" name="cm9"size="5"></td>
119.<td><input type="text" name="cm10"size="5"></td>
120.<td><input type="text" name="cm11"size="5"></td>
121.<td><input type="text" name="cm12"size="5"></td>
122.<td><input type="text" name="cm13"size="5"></td>
123.<td><input type="text" name="cm14"size="5"></td>
124.<td><input type="text" name="cm15"size="5"></td>
125.<td><input type="text" name="cm16"size="5"></td>
126.<td><input type="text" name="cm17"size="5"></td>
127.<td><input type="text" name="cm18"size="5"></td>
128.
129.</spin></td>
มันผิดโครงสร้าง ครับ อย่าเอา spin มาครอบระหว่าง td
|
|
|
|
|
Date :
2014-08-09 12:53:02 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องเขียนยังไงอ่าค่ะ ???
|
|
|
|
|
Date :
2014-08-09 12:55:55 |
By :
paweenachom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--
|
ประวัติการแก้ไข 2014-08-09 17:36:16
|
|
|
|
Date :
2014-08-09 13:33:14 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
---
|
ประวัติการแก้ไข 2014-08-09 17:35:58
|
|
|
|
Date :
2014-08-09 13:45:27 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่ขึ้นอ่าค่ะ T^T
|
|
|
|
|
Date :
2014-08-09 16:00:33 |
By :
paweenachom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
// getuser.php
if(isset($_GET['q'])){
include 'connectDB.php';
$q = intval($_GET['q']);
//rm , have h where rm.rm_id = h.rm_id
$strSQL = "SELECT rw.rm_id as id ,h.NT_id as NT, h.nutrients as data "
. "FROM raw_material rw , have h "
. "WHERE rw.rm_id = h.rm_id "
. "and rw.rm_id = " . $q;
$objQuery = mysql_query($strSQL) or die("Error Query [" . $strSQL . "]");
$op=array(); // Buffer
while( $ro = mysql_fetch_row($objQuery)){
$op[]=array($ro['NT'], $ro['data']);
}
if(count($op)==0)
echo 'var js= ' , json_encode($op);
}
?>
Code (PHP)
<?php
// index.php
$strSQL = "SELECT * FROM raw_material";
$objQuery = mysql_query($strSQL) or die("Error Query [" . $strSQL . "]");
$option='';
while ($objResult = mysql_fetch_array($objQuery)) {
$option.='<option value="'.$objResult["rm_id"].'"><'.$objResult["rm_name"].'</option>'."\n";
}
mysql_close($objConnect);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script>
function showUser(str) {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
setRow( xmlhttp.responseText );
}
}
xmlhttp.open("GET", "getuser.php?q=" + str, true);
xmlhttp.send();
}
function setRow(rs){
eval(rs);
var tb=document.getElementById('tb');
var ro=tb.insertRow(tb.rows.length);
ro.insertCell(0);
var j=js.length; // ไม่รู้ว่า จำนวน field ที่แน่นอน
for(var i=0; i<j; i++){
ro.insertCell(i+1).innerHTML='<input type="text" name="'+js[i][0]+'" value="'+js[i][1]+'" style="width: 90%" />';
}
}
</script>
<table border='1' id="tb">
<tr >
<td width="50" rowspan="2" align="center">วัตถุดิบ</td>
<td width="15" rowspan="2" align="center">CP%</td>
<td width="40" rowspan="2" align="center"><p>พลังงาน<br />(kcal/kg.)</p></td>
<td width="40" rowspan="2" align="center">Cal</td>
<td colspan="11" align="center">กรดอะมิโน(%)</td>
<td width="37" rowspan="2" align="center">Lin</td>
<td width="37" rowspan="2" align="center">G+C</td>
<td width="40" rowspan="2" align="center">ราคา/kg</td>
<td width="40" rowspan="2" align="center">น้ำหนัก(kg)</td>
<td width="50" rowspan="2" align="center">ค่าใช้จ่าย<br />
(บาท)</td>
</tr>
<tr>
<td width="26" align="center">P</td>
<td width="35" align="center">Lys</td>
<td width="34" align="center">M+C</td>
<td width="30" align="center">Try</td>
<td width="25" align="center">Thr</td>
<td width="29" align="center">Iso</td>
<td width="26" align="center">Arg</td>
<td width="33" align="center">Lus</td>
<td width="29" align="center">P+T</td>
<td width="29" align="center">His</td>
<td width="33" align="center">Val</td>
</tr>
<tr id="rowInput">
<td><select name="users" onchange="showUser(this.value)">
<option value="0">เลือกวัตถุดิบ</option>
<?php echo $option; ?>
</select>
</td>
<td colspan=19> </td>
</tr>
</table>
</body>
</html>
แก้ให้ใหม่แล้วนะครับ ทดสอบแล้วใช้ได้ครับ ยังไงก็อย่าเอาไปใช้โดยไม่ได้ศึกษานะครับ
อ่านและทำความเข้าใจกับมันหน่อยนะครับเอามาเป็นตัวอย่างนะครับ ผมไม่อยากทำบาปจากความหวังดีครับ
|
ประวัติการแก้ไข 2014-08-09 17:44:30
|
|
|
|
Date :
2014-08-09 17:43:44 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ แต่มันก็ยังไม่ขึ้นอยู่ดี ไม่รูเป็นเพราะอะไร T^T
|
|
|
|
|
Date :
2014-08-09 19:27:11 |
By :
paweenachom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
//index.php
include 'connectDB.php'; ขาดบันทัดนี้ไปครับ ขอโทษครับ
|
|
|
|
|
Date :
2014-08-09 19:30:51 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันขึ้นแบบนี้ค่ะ เวลากดเลือกอะไรก็ไม่มีไรขึ้นสักอย่าง เหมือนหน้าปกติค่ะ
|
|
|
|
|
Date :
2014-08-09 20:20:25 |
By :
paweenachom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
// getuser.php
if(isset($_GET['q'])){
include 'connectDB.php';
$q = intval($_GET['q']);
//rm , have h where rm.rm_id = h.rm_id
$strSQL = "SELECT rw.rm_id as id ,h.NT_id as NT, h.nutrients as data "
. "FROM raw_material rw , have h "
. "WHERE rw.rm_id = h.rm_id "
. "and rw.rm_id = " . $q;
$objQuery = mysql_query($strSQL) or die("Error Query [" . $strSQL . "]");
$op=array(); // Buffer
if(mysql_num_rows($objQuery)){
while( $ro = mysql_fetch_row($objQuery)){
$op[]=array($ro['NT'], $ro['data']);
}
echo 'var js= ' , json_encode($op);
}else{
echo 'var js=', json_encode(array( array('data', 'nodata found')));
}
}
?>
แก้เสร็จ ให้รองเรียกจาก browser โดยตรง ครับ localhost/โฟลเดอร์ไว้ไฟล์/getuser.php?q=ค่าที่ต้องการ
แล้วดูผลลัพธ์ครับว่ามันออกมายังไง
|
|
|
|
|
Date :
2014-08-09 20:50:00 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|