我想从公式中将记录插入MySQL数据库表。问题是field
变量中的表格列中没有$_POST
,但它在textfield
中显示为formulaire
。我通过这种方式插入字段值:
$newRecord->insert($_POST); // we created a generic function insert($array) to insert records
那么如何删除$ _POST的元素?
答案 0 :(得分:15)
简单地说:
unset($_POST['field']);
答案 1 :(得分:2)
如果$_POST
包含用户输入的数据,那么我真的希望insert
函数正在清理数据。如果不是,你只是要求SQL注入攻击。