我对如何保护核心PHP提交POST非常了解。
这一次,我正在使用wordpress,我正在创建自定义插件。我想确定的一件事是如何确保wordpress建议的形式。
使用PHP,这是一个示例PHP提交表单,我想在WP中实现它。
<?php
if(isset($_POST["submit"])) //how to secure this submit form
{
echo $_POST['input']; //how to secure this input
}
?>
<form action="" method="post">
<input type="text" name="input">
<input type="submit" name="submit" value="Submit">
</form>