Heim > Artikel > Backend-Entwicklung > php+mysql 怎么用循环的方式把表单内容update到数据库
php+mysql 如何用循环的方式把表单内容update到数据库
我目前需要在一个网页动态创建表格,比如10行,填写表格后通过表单提交
代码如下:
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> echo "
$i = 0; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['filename'] . "</td>"; echo "<td>" . $row['filesize'] . "</td>";//数据表中已经有文件名和文件大小,但是播放时间都默认为0,通过网页修改来update数据库 echo "<td> <input name='\"<?php' echo>\" type=\"text\"></td>"; echo "<td> <input name='\"<?php' echo>\" type=\"text\"></td>"; echo "<td> <input name='\"<?php' echo>\" type=\"text\"></td>"; echo "</tr>"; $i++; } <br><font color="#e78608">------解决方案--------------------</font><br>你先 print_r($_POST); 看看 <br><font color="#e78608">------解决方案--------------------</font><br>echo "<td> <input name='\"<?php' echo>\" type=\"text\"></td>";<br>echo "<td> <input name='\"<?php' echo>\" type=\"text\"></td>"; <div class="clear"> </div>