从动态post表单php获取数据

时间:2012-12-03 13:33:11

标签: php mysql forms

我在php网站上有一个表单来编辑动态表中的表数据,它显示正确,但我不确定我是否正确传递数据或如何访问它。

editMenu()

$query = "SELECT * FROM attendance";
$result = mysql_query($query);

print("<b>Edit the details</b><br>");

print("<form method=\"POST\" action=\"editAttendance.php\" >");
print("<table>");
print("<tr>");
for($i = 0; $i < mysql_num_fields($result); $i++) {
    $field_info = mysql_fetch_field($result, $i);
    print("<th>" . $field_info->name . "</th>");
}

while($row = mysql_fetch_row($result)) {
    print("<tr>");
    foreach($row as $_column) {
    print("<td>");
    print("<input type='text' name='{$_column}' size=15 value='{$_column}'>");
    print("</td>");            
    }
print("</tr>");
}  

print("</table>");

print("<input type='submit' value='Edit'>");
print("<input type='button' value='Cancel' onclick=\"location.href='raidAttendance.php'\">");

print("</form>");

mysql_free_result($result);

editAttendance.php如下所示:

<?php

@mysql_connect("localhost", "root", "vertrigo");
@mysql_select_db("test");

    $b = 0;
    $query = array();
    $result = mysql_query("SELECT * FROM attendance");

    //get all the column names, works
    for ($i = 0; $i < mysql_num_fields($result); $i++) {
        $vars[$i] = mysql_field_name($result,$b);
        $b++;
    }

    //get all the data, stuck here

&GT;

我知道如何在设置大小的情况下获取表单的数据,但这是我第一次处理动态表单时的数据,而且我无法做出正面或反面。

我想得到的是整个表的mysql更新语句,如:

$query = ""; //all the data from the table
$result = mysql_query("UPDATE attendance SET $query");

考勤表如下所示,大约有15-18行:

id | name | strikes | date1 |date2 | date..

----------------------------------------------
1 | name1 | number | 21/10/2012 | 27/10/2012 | ..

2 | ..

1 个答案:

答案 0 :(得分:1)

当您发布数据时,格式为后端的$ _​​POST ['field_name'] ='value'。做一个循环来进行查询。

$query = '';

// Generate the query string
foreach ($_POST as $field => $value) {
    $query .= $field .' = ' .$value .', ';
}

$query = substr($query, 0, -2); // Remove the last comma and space

$query .= ' where someField = someValue'; // add condition to the update statment

然后你可以执行:

$result = mysql_query("UPDATE attendance SET $query");

抱歉我的英文。

我希望有所帮助。