我已经打印了从数据库中获取的表格,如下所示 还有我的代码
print "<form id='form1' name='form1' method='post' action='http://localhost/live/index.php?m=sync&a=update'>";
while($db_field = mysql_fetch_assoc($result))
{
print "<table border=1 width=100%>";
print "<tr><td width=5%><input name='taskid' type='text' value=".$db_field['task_id']." readonly=readonly></td>";
/*print "<td width=10%>".$db_field['task_name']."</td>";*/
print "<td width=5%><input name='percent' type='text' value=".$db_field['task_percent_complete']." readonly=readonly></td>";
print "</table>";
}
print "<input name='Sync' type='submit' value='Sync' id='Sync' />";
print "</form>";
mysql_close($db_handle); /*.$db_handle */ /*<---to check the resource link and id*/
}
else{
print"Failed" ;//.$db_handle;
所以我想知道如何将数据库中的所有数据解析到另一个页面,就像我要发送的操作一样,因为现在当我单击下面的同步按钮时,我只能解析 1 个表中的 1 个数据是我的解析代码另一个页面 下图是解析代码
我不知道如何在新页面中显示所有数据...是否需要使用循环?我是新手,非常感谢