我正在创建一个用户可以查看和编辑其帐户信息的表单,我希望尽可能简化这一点,因为有很多表单字段。我已经选择了所有客户的数据而没有指定列名,但是我无法在HTML表中的正确位置显示,而无需单独调用每个。
我在下面的代码中使用了mysql_fetch_array,但对于300多个字段来说这将是非常麻烦的。我知道可以使用mysql_fetch_assoc,但我还没弄清楚如何在正确的位置打印。
mysql_fetch_assoc (原谅我的无知,但如果不使用WHILE和FOREACH,我就无法工作)
while ($row = mysql_fetch_assoc($result)) {
foreach($row as $key=>$value){
echo "$key: $value<br />\n ";
}}
这有效,但需要单独指定每个字段
<?php
//Database connection and Open database
require_once('config.php');
$result = mysql_query("SELECT customer_info.*, style.* FROM customer_info, style WHERE customer_info.user_id = style.user_id AND customer_info.user_id=$user_id ") or die(mysql_error());
$row = mysql_fetch_array($result );
?>
<table border="0" cellspacing="2" cellpadding="2">
<tr><td name="fname">First Name: <?php echo $row['fname']; ?></td>
<td name="lname">Last Name: <?php echo $row['lname']; ?></td>
<td name="email">Email: <?php echo $row['email']; ?></td>
<td name="colors_love">Colors Love: <?php echo $row['colors_love']; ?></td>
</tr></table>
有没有办法用我的INSERT INTO代码基本上颠倒我实现这个目的的方式?如果是这样,我认为这将简化我的下一个任务(允许用户编辑他们的信息)
$fieldlist=$vallist='';
foreach ($_POST as $key => $value) {
$fieldlist.=$key.',';
$vallist.='\''.($value).'\',';
}
$result = mysql_query('INSERT INTO taste ('.$fieldlist.') VALUES ('.$vallist.')');
答案 0 :(得分:2)
有点这个?
<?php
//Database connection and Open database
require_once('config.php');
$result = mysql_query("SELECT customer_info.*, style.* FROM customer_info, style WHERE customer_info.user_id = style.user_id AND customer_info.user_id=$user_id ") or die(mysql_error());
$row = mysql_fetch_assoc($result );
?>
<table border="0" cellspacing="2" cellpadding="2">
<tr><?php foreach($row as $field => $content): ?>
<td><?php echo $field; ?>: <?php echo $content; ?></td>
<?php endforeach; ?></tr>
</table>
答案 1 :(得分:2)
说明使用mysql
库是一个糟糕的想法,你实际上大部分都在那里:
<table>
<?php while ($row = mysql_fetch_assoc($result)): ?>
<tr>
<?php foreach($row as $key=>$value) {
echo "<td>$key: $value</td>\n ";
} ?>
</tr>
<?php endwhile; ?>
</table>
你显然想要为真实表单清理它,因为回显db字段名称并不完全是用户友好的。