我希望获得一个从表格生成编辑表单的功能。我想将主键转换为隐藏输入,其余转换为文本框。这是我所能得到的
function getform($table) {
$html= "";
$result = mysql_query("Select * From $table");
if (!$result) {
echo 'Could not run query: ' . mysql_error();
// return from function here. don't know what value you need.
return "";
}
$fieldnames = array();
$fieldCount = mysql_num_fields($result);
for( $i=0; $i<$fieldCount; $i++ ) {
$fieldnames[] = ucfirst(mysql_field_name( $result , $i ));
}
);
}
我不知道如何获取主键,其次是字段的大小