我有3行。哪些是動態創建的。如果我們點擊添加更多那麼所有三個字段都是動態創建的。它正常工作。動態行插入表中通過php
但我想通過mysql查詢動態地將這些字段插入到表中。我嘗試過,但它不起作用。請幫助任何人解決它。謝謝。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
var rowCount = 1;
window.addMoreRows = function(frm) {
rowCount++;
var recRow = '<div id="rowCount' + rowCount + '"><div class="col-sm-3 text-left">College Name:</div><div class = "col-sm-9"><input type="text" name = "collegename[]" placeholder = "College Name" class = "form-control"/></div><div class = "col-sm-3 text-left" > Affiliated University: </div><div class = "col-sm-9" ><input type = "text" name = "univ[]" placeholder = "Affiliated University" class = "form-control"/> </div><div class = "col-sm-3 text-left" > Course Name: </div> <div class = "col-sm-9" ><input type = "text" name = "cname[]" placeholder = "Course Name" class = "form-control"/></div><div class = "col-sm-3 text-left" > Major & Subject: </div><div class = "col-sm-9"><input type = "text" name = "msub[]" placeholder = "Major Subject" class = "form-control"/></div><div class = "col-sm-3 text-left"> Final & Percentage: </div><div class = "col-sm-9"><input type = "text" name = "fper[]" placeholder = "Final Percentage" class = "form-control"/></div><a href = "javascript:void(0);" onclick = "removeRow (' + rowCount + ');" >Delete</a></div> ';
$('#addedRows').append(recRow);
}
window.removeRow = function(removeNum) {
$('#rowCount'+removeNum).remove();
}
</script>
<?php
extract($_POST);
if (isset($_POST['submit_val'])) {
if ($_POST['dynfields']) {
foreach (array_keys($dynfields) as $key) {
$txt = $dynfields[$key];
$txt1 = $univ[$key];
$txt2 = $cname[$key];
$txt3 = $msub[$key];
$txt4 = $fper[$key];
$query = mysql_query("INSERT INTO dynamicfield VALUES ('','','$txt','$txt1','$txt2','$txt3','$txt4')");
}
}
echo "<i><h2><strong>" . count($_POST['dynfields']) . "</strong> Hobbies Added</h2></i>";
mysql_close();
}
?>
<form action="" method="post" id="addedRows">
<h5 align="left"><u style="color:#449D44;">Other Studies</u>-<span style="font:normal 12px agency, arial; color:blue; text-decoration:underline; cursor:pointer;" onclick="addMoreRows(this.form);">Add More Other Studies</span></h5>
<span id="rowId">
<div class="col-sm-3 text-left">College Name: </div>
<div class="col-sm-9"><input type="text" name="dynfields[]" placeholder="College Name" class="form-control" /></div>
<div class="col-sm-3 text-left">Affiliated University: </div>
<div class="col-sm-9"><input type="text" name="univ[]" placeholder="Affiliated University" class="form-control" /></div>
<div class="col-sm-3 text-left">Course Name: </div>
<div class="col-sm-9"><input type="text" name="cname[]" placeholder="Course Name" class="form-control" /></div>
<div class="col-sm-3 text-left">Major Subject: </div>
<div class="col-sm-9"><input type="text" name="msub[]" placeholder="Major Subject" class="form-control" /></div>
<div class="col-sm-3 text-left">Final Percentage: </div>
<div class="col-sm-9"><input type="text" name="fper[]" placeholder="Final Percentage" class="form-control" /></div>
</span>
<input type="submit" name="submit_val" value="Submit" />
什麼是列名? – C2486
姓名,郵箱,手機號碼 – user3526766
在查詢中使用列名,查看我的答案 – C2486