header("content-type:text/html;charset=utf-8");//设置页面内容是html编码格式是utf-8
//1.接收数据
$name = $_POST['name'];
$tel = $_POST['tel'];
//数据插入的天龙八部
//1.数据库连接
$pdo = new PDO('mysql:host=sh-cdb-anr5wfga.sql.tencentcdb.com;dbname=collect_information;port=63512','dbmodify','IFreshwing2018!');
$pdo->exec('set names utf8');
// $link = mysql_connect("sh-cdb-anr5wfga.sql.tencentcdb.com:63512","dbmodify","IFreshwing2018!","collect_information") or die("数据库连接失败");
if($pdo->exec('insert into information (name,tel,information_sources) values("'.$name.'","'.$tel.'","永新官网")')){
echo 100;
}else{
echo 1001;
}
网友评论