-1

我有一个接受数据并将其保存在数据库中的用户注册表单,但有时在数据库中保存了一条空记录。为什么会出现这个问题?

我的代码如下。Html 文本框和以下代码位于 index.php 文件中

if(isset($_POST[btnSubmit]))
{
    if( !empty($txtName) && !empty($txtEmail) && !is_numeric($txtEmail) ) 
    {
               //data saving code goes here......
    }
}
4

1 回答 1

3

php 5.5

if( !empty(trim($txtName)) && !empty(trim($txtEmail)) && !is_numeric($txtEmail) ) 
        {
                   //data saving code goes here......
        }

< php.5.4

$txtName = trim($txtName);
$txtEmail = trim($txtEmail);

if( !empty($txtName) && !empty($txtEmail) && !is_numeric($txtEmail) ) 
        {
                   //data saving code goes here......
        }
于 2013-06-07T07:05:30.507 回答