|
|
|
อยากทราบว่า เราจะสามารถเก็บข้อมูลที่อยู่ใน input box มาเก็บไว้ในตัวแปรได้ไหมครับ |
|
|
|
|
|
|
|
Code
<input type="text" name="lmName3" id="lmName3" value="<?=$lmName3[$i];?>">
ตอนรับค่า
Code
echo $_POST["lmName3"];
|
|
|
|
|
Date :
2010-11-18 05:47:25 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอา output ออกมาตามที่บอกแล้วครับมันออกมาเปน อาร์เรย์ตัวที่ 4 จาก 6 อยากทราบเหตุผลหน่อยครับ เพื่อนำไปแก้ไข
ขอบคุณพี่มากครับ
|
|
|
|
|
Date :
2010-11-18 10:59:47 |
By :
tonglar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code เต็ม ๆ หน่อยครับ
|
|
|
|
|
Date :
2010-11-18 11:47:15 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โปรแกรมผมจะทำงานด้วยกัน 3 หน้าครับ
1 หน้าหลัก groupr.php
Code (PHP)
<? session_start(); ?>
<!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>
<script type="text/javascript">
function popUpWindow(URL, N, W, H, S) { // name, width, height, scrollbars
var winleft = (screen.width - W) / 2;
var winup = (screen.height - H) / 2;
winProp = 'width='+W+',height='+H+',left='+winleft+',top='+winup+',scrollbars='+S+',resizable' + ',status=yes'
Win = window.open(URL, N, winProp)
if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}
function popUpTextArea() {
popUpWindow("popup_textarea.php",'SH1',1000,810,'yes');
}
</script>
<body>
<table width="1045" height="158" border="1">
<tr>
<td height="92" colspan="4"> </td>
</tr>
<tr>
<td width="256" bgcolor="#66CC00" class="ฟก">เพิ่มข้อมูลนิสิต</td>
<td width="253" bgcolor="#66CC00" class="ฟก"><a href="showresive.php">แสดงข้อมูลนิสิต</a><a href="shownews.php"></a></td>
<td width="272" bgcolor="#66CC00" class="ฟก"><a href="groupr.php">จัดกลุ่มนิสิต</a><a href="www.sanook.com" target="leftFrame"></a></td>
<td width="236" bgcolor="#66CC00" class="ฟก"><a href="../home.php">กลับสู่หน้าหลัก</a><a href="home.php"></a></td>
</tr>
</table>
<form id="frmTest" name="frmTest" method="post" action="insertgroup.php">
<table width="1493" height="255" border="1" cellpadding="1" cellspacing="1">
<tr>
<td width="1485"><table width="919" height="255" border="1" cellpadding="1" cellspacing="1">
<tr></tr>
<tr>
<td width="50"> IDGROUP: </td>
<td width="50"><input name="IDGROUP" value="<?
$hostnameDB = "127.0.0.1:3306";
$userDB = "root";
$passwordDB = "092601957";
$dbname = "sender";
mysql_connect($hostnameDB, $userDB, $passwordDB) or die("No Connect Server");
mysql_select_db($dbname) or die("No Connect Database!");
$max = mysql_query("select MAX(IDGROUP) from groupr");
echo $total_max = mysql_result($max,0)+1;
mysql_close();
?> " readonly="readonly" /></td>
<td colspan="2"> </td>
</tr>
<tr>
<td>GRUPNAME</td>
<td><input name="GROUPNAME" type="text" id="GROUPNAME" size="30" /></td>
<td colspan="2"> </td>
</tr>
<tr>
<td height="203" colspan="3" rowspan="2"><a href="#" onclick="return popitup('showresive.php')"
>
<textarea name="tbTest" cols="120" rows="20" readonly="readonly" id="tbTest"></textarea>
</a></td>
<td width="181"><label>
<input type="button" name="button2" id="button2" value="Submit" onclick="popUpTextArea();"/>
</label></td>
</tr>
<tr>
<td>
<?
for($i=0;$i<=5;$i++)
{
//$dt = echo"<p> ข้อมูลที่$i <input type=\"text\" name=\"lmName3\" value=\"$lmName3[$i]\"></p>\n"; ;
echo $dt;
echo "$lmN[i]";
echo $dt;
$_SESSION['listname[$i]'] = $dt;
?>
<p> <input type="text" name="lmName3" id="lmName3" value=$lmName3[$i]></p> // ส่วนที่มีปัญหาครับ
ส่วนนี้จะมีค่าจาก javascipt ในหน้า popup_textarea.php มาแสดงครับ
<?
echo "testoutput";
echo $lmName3;
echo "testoin";
$dt = $_POST["lmName3"];
echo "testoin1";
echo $dt;
//echo "test $_SESSION['listname[$i]']";
}?>
<?
include 'connectdb.php';
include 'openhistorry.php';
?>
</td>
</tr>
</table> </td>
</tr>
</table>
<p>
<label>
<input type="submit" name="button3" id="button3" value="Submit2" />
</label>
<label>
<input type="button" name="cutstring" id="cutstring" value="Button" onclick="JavaScript:setContent2()"/>
</label>
</p>
</form>
</body>
</html>
2 หน้า insertgroup.php
Code (PHP)
<!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>
<table width="1045" height="158" border="1">
<tr>
<td height="92" colspan="4"> </td>
</tr>
<tr>
<td width="256" bgcolor="#66CC00" class="ฟก">เพิ่มข้อมูลนิสิต</td>
<td width="253" bgcolor="#66CC00" class="ฟก"><a href="showresive.php">แสดงข้อมูลนิสิต</a><a href="shownews.php"></a></td>
<td width="272" bgcolor="#66CC00" class="ฟก"><a href="groupr.php">จัดกลุ่มนิสิต</a></td>
<td width="236" bgcolor="#66CC00" class="ฟก"><a href="../home.php">กลับสู่หน้าหลัก</a><a href="home.php"></a></td>
</tr>
</table>
<form id="frminsert" name="frminsert" method="post" action=""><br />
<? for($i=0;$i<=5;$i++)
{
?>
<p> <input type="text" name="lmN3" value=<? $_POST["lmName3[$i]"]?> ></p>
<?
// ส่วนปัญหาที่พบอยู่ครับ
echo $_POST["lmName3[0]"];
echo $_POST["lmName3[1]"]; // ส่วนนี้ค่ามันว่างเปล่าเลยครับเป็น null ทั้งๆ หน้าก่อนส่งค่ามันมีค่าอยู่
echo $_POST["lmName3"]; // ส่วนนี้จะแสดงค่าใน หน้า groupr.php ที่ส่งมาครับ $lmName3[$i] ซึ่งค่าที่เหนมันเป็น arary น่าจะเป็นช่องสุดท้ายครับ
}?>
</form>
<?
$db = "sender";
$tb = "groupr";
$host = "127.0.0.1:3306";
$uname = "root"; // root
$passwd = "092601957";
if (!$connect=mysql_connect($host,$uname,$passwd)){
echo 'Could not connect to mysql';
exit;
}
if (isset($_POST["IDGROUP"]) && isset($_POST["IDGROUP"])){
$sql="insert into $tb values(";
$sql.="'autocase',";
$sql.="'".$_POST["GROUPNAME"]."')";
if (!$result=mysql_db_query($db,$sql))
echo "$sql : error<br>";
else {
echo "$sql : ok1<br>";
}
$sql="CREATE TABLE ".$_POST["GROUPNAME"]." (id int(11) NOT NULL );";
if (!$result=mysql_db_query($db,$sql))
echo "$sql : error<br>";
else {
echo "$sql : ok2<br>";
}
$sql="insert into ".$_POST["GROUPNAME"]." values(";
for($fa = 0 ; $fa < 5 ; $fa++){
$sql.="'".$_POST["$lmName3[$fa]"]."',";
}
$sql.="'".$_POST["$lmName3[5]"]."')";
if (!$result=mysql_db_query($db,$sql))
echo "$sql : error<br>";
else {
echo "$sql : ok3<br>";
}
}
mysql_close($connect);
?>
</body>
</html>
ภาพรวมการทำงานครับ
|
|
|
|
|
Date :
2010-11-18 13:17:06 |
By :
tonglar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประวัติการแก้ไข 2010-11-18 13:24:31 2010-11-18 13:25:32 2010-11-18 13:27:28
|
|
|
|
Date :
2010-11-18 13:23:27 |
By :
tonglar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้ามีวิธีการไหนสามารถส่งค่าได้สะดวกกว่านี้ รบกวนแนะนำด้วยครับ ขอบคุณครับ
|
|
|
|
|
Date :
2010-11-18 13:31:13 |
By :
tonglar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|