customer_ok.php
来自「十大精典PHP项目开发全程案例+代码」· PHP 代码 · 共 20 行
PHP
20 行
<?php include("conn/conn.php");
if($Submit==true and $customer_user==true){
if(preg_match("/^(\d{3}-)(\d{8})$|^(\d{4}-)(\d{7})$|^(\d{4}-)(\d{8})$|^(\d{11})$/",$customer_tel,$countes)){
$query=mysql_query("insert into tb_customer(customer_user,customer_tel,customer_address)values('$customer_user','$customer_tel','$customer_address')");
if($query==true){
echo "<script> alert('客户信息添加成功');window.location.href='indexs.php?lmbs=客户信息管理';</script>";
}
}else{
echo "<script>alert('您输入的电话号码格式不正确!!');history.back()</script>";
}
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?