我还是初学者,仍然对在代码中添加什么感到困惑。我有一个表单,我想验证它有些错误,例如。田野空..所以..
我是否必须添加' else '或mysql_error?
$post = isset($_REQUEST['post']) ? $_REQUEST['post'] : null;
if (empty($post))
{
echo "<p class=\"info\">The post field is empty</p>";
}
有什么想法吗?感谢。
答案 0 :(得分:3)
我愿意:
if (empty($_REQUEST['post'])) {
die("The Post field is empty.");
} else {
// Write to the database
}
另一方面,如果写入数据库时出现任何问题,则mysql_error()
将对调试很有用。