您好,每当我检查用户输入是否输入任何值时,我都想使用 Preg_Replace 函数。如果没有给出错误消息,例如“请输入您的姓名”,但我收到的不是这个错误:
注意:未定义索引:第 24 行 C:\xampp\htdocs\spdealers\Admin
Panel\Property_Insert_Page_exe.php 中的buildinglabs
这是我的代码:
<?php
$buildingslabs = preg_replace("[^A-Z a-z0-9]", "", $_POST['buildingslabs']);
if(empty($buildingslabs)
{
echo 'Plese Enter the Buildings Labs';
}
else
{
echo 'successfully inserted';
}
?>