我正在尝试处理我提前不知道表单字段将是什么的表单。这仍然可以在 PHP 中完成吗?
例如,我有这个 html 表单:
<form method="post" action="process.php">
<?php get_dynamic_fields(); // this gets all the fields from DB which I don't know ahead of time what they are. ?>
<input type="submit" name="submit" value="submit" />
</form>
这是我在 PHP 进程文件中的内容
<?php
if ( isset( $_POST['submit'] ) && $_POST['submit'] === 'submit' ) {
// process form here but how do I know what field names and such if they are dynamic.
}
?>
这里有一个警告:假设我无法提前从数据库中获取数据,还有办法做到这一点吗?