Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从公式中将一条记录插入到 MySQL 数据库表中。问题是变量field中的表列中没有 a ,但它在. 我通过这种方式插入字段值:$_POSTtextfieldformulaire
field
$_POST
textfield
formulaire
$newRecord->insert($_POST); // we created a generic function insert($array) to insert records
那么如何删除 $_POST 的元素呢?
简单地去:
unset($_POST['field']);
如果$_POST包含用户输入的数据,那么我真的希望该insert功能正在清理数据。如果不是,您只是要求进行 SQL 注入攻击。
insert