|
|
|
ขอพี่ๆที่เก่งๆ ช่วยดูให้ผมหน่อยครับ ผมไม่สามารถเชื่อมต่อ Mysql แบบ Arrayได้เลยครับผม T^T |
|
|
|
|
|
|
|
พี่ๆครับ คือว่าผมจะบันทึกข้อมูลทีละหลายๆบันทัดที่มาจาก Array ที่รับมาจากฟร์อมแล้วบันทึกลง mysql ได้อย่างไรครับ คือผมสร้างตัวรับ ผมอยากจะขอคำแนะนำจากพี่ๆหน่อยครับ หรือช่วยหาแนวทางการเชื่อต่อให้หน่อยครับ ผมมี Database และ scrip มาให้ดู ขอให้พี่ๆช่วยดูหน่อยครับผม
นี่เป็น table ที่ผมสร้างครับ
Code (PHP)
CREATE TABLE `portf_joanatee2` (
`userid` varchar(4) default NULL,
`num` int(2) default NULL,
`work` varchar(150) default NULL,
`timethink` int(3) default NULL,
`date` datetime default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
และนี่คือส่วนแบบฟร์อมรับข้อมูลเพื่อที่จะส่งไปฐานข้อมูลครับผม
Code (PHP)
<html>
<head>
<title>ภาระงานในความรับผิดชอบ</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<?
mysql_connect("localhost","root","1q2w3e");
mysql_select_db("Project");
$strSQL = "SELECT * FROM portf_joanatee2";
$objQuery = mysql_query($strSQL);
?>
<script language="javascript">
function CreateSelectOption(ele)
{
var objSelect = document.getElementById(ele);
var Item = new Option("", "");
objSelect.options[objSelect.length] = Item;
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
var Item = new Option("<?=$objResult["Name"];?>", "<?=$objResult["CustomerID"];?>");
objSelect.options[objSelect.length] = Item;
<?
}
?>
}
function CreateNewRow()
{
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;
var theTable = document.getElementById("tbExp");
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"2\" NAME=\"num1_"+intLine+"\" ID=\"num1_"+intLine+"\" VALUE=\"\"></center>";
//*** Column 2 ***//
newCell = newRow.insertCell(1);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"90\" NAME=\"work2_"+intLine+"\" ID=\"work2_"+intLine+"\" VALUE=\"\"></center>";
//*** Column 3 ***//
newCell = newRow.insertCell(2);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"3\" NAME=\"timethink3_"+intLine+"\" ID=\"timethink3_"+intLine+"\" VALUE=\"\"></center>";
}
</script>
<body>
<form action="add_PortfolioJoanatee2.php" method="post" name="frmMain">
<p> </p>
<p> </p>
<table width="789" height="48" border="0" align="center">
<tr>
<td height="23" colspan="3" align="left"><h2><font size="2px"><strong>หมวดที่ 2 ภาระงานในความรับผิดชอบ</strong></font></h2></td>
</tr>
<tr>
<td width="65" height="19"> </td>
<td width="714" colspan="2" align="left"><font size="2px">2.1 งานในความรับผิดชอบ (Job Description) (เรียงลำดับจากลักษณะงานที่ใช้เวลามากไปน้อย)</font></td>
</tr>
</table>
<p> </p>
<table width="789" border="0" align="center" id="tbExp">
<tr>
<td width="69"><div align="center">ลำดับที่ </div></td>
<td width="558"><div align="center">ลักษณะงาน </div></td>
<td width="148"><div align="center">เวลาที่ใช้ (คิดเป็น % ) </div></td>
</tr>
</table>
<center>
<p>
<input type="hidden" name="hdnMaxLine" value="0">
<input name="btnAdd" type="button" id="btnAdd" value="+ เพิ่มงาน" onClick="CreateNewRow();">
</p>
<table width="789" height="23" border="0" align="center">
<tr>
<td width="111" height="19" align="center"> </td>
<td width="496" align="center"><font size="2px">จำนวนเวลาที่ใช้ทั้งหมดคิดเป็น </font></td>
<td width="168" colspan="-1" align="center" valign="middle"><font size="2px">100%</font></td>
</tr>
</table>
<p>
<input type="submit" name="Submit" id="button" value="ยืนยันการบันทึกงาน">
<input type="reset" name="reset" id="reset" value="ลบงานทั้งหมด">
</p>
</center>
</form>
</body>
</html>
ประเด็นคือผมจะสร้างแบบเชื่อมต่ออย่างไรครับผม ขอให้พี่ๆช่วยแนะนำหน่อยครับ หรือมีตัวอย่างให้เป็นแนวทางหน่อยครับผม ขอความกรุณาครับ
Tag : PHP, MySQL, HTML/CSS, JavaScript, CakePHP, JAVA
|
ประวัติการแก้ไข 2012-09-11 18:09:09 2012-09-11 18:15:34
|
|
|
|
|
Date :
2012-09-11 18:08:32 |
By :
csboomzaa |
View :
993 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ได้หรือไม่ได้ยังไงผมลองเอาไปประยุกต์ใช้ก่อนนะครับ เดี๋ยวจะมาบอกผลอีกทีครับ
|
|
|
|
|
Date :
2012-09-11 20:44:00 |
By :
csboomzaa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแล้วครับ ไม่ได้อ่าครับ = =" ท่านใดพอจะมีแนวทางบ้างครับ = ="
|
|
|
|
|
Date :
2012-09-11 20:54:33 |
By :
csboomzaa |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|