我正在做一个注册表单页面,我也应该在其中输入“电话”输入,但我需要电话字段为 8 位数字!!!如果用户输入的数字多于或少于 8 位,则注册表单会告诉他一个错误。
我认为应该是这样的......连接到数据库后
$telephone=$_POST['telephone'];
...
....
if(empty($telephone)){ // **i think i should write smth here???**
echo "phone number not set, and should be 8 digits!!" ;
}
else{
/* Now we will write a query to insert user details into database */
$insert_user=mysql_query("INSERT INTO login (telephone) VALUES ('$telephone')");
我感谢任何帮助:) 谢谢