$check = mysqli_num_rows(mysqli_query($conn, 'SELECT FROM tablename WHERE name="'.$_POST['name'].'"'));
if($check = 0) //Checks if the name does not exist
{
// Your code...
}
else
{
// Error to tell the user the name already exists....
}
上面的代码在我的Meteor应用程序中生成一个表单,但它看起来很糟糕(或者至少是非直观的):
我不知道为什么会这样。在我看到的示例(2,{{3}})中,表单以更加敏感的方式呈现。如何让afQuickField在单独的行上显示标签和输入,或者至少以另一种有意义的方式显示?