色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

html表單通過PHP提交到MySQL存儲?

夏志豪2年前15瀏覽0評論

cj.php代碼示例如下:

<?php$conn=@mysql_connect("數(shù)據(jù)庫","帳號","密碼") or die(mysql_error()); @mysql_select_db('數(shù)據(jù)表名',$conn) or die(mysql_error()); $sqlstr = "insert into 數(shù)據(jù)表名(xm,xxmc,zy,szd,qq,yx,tel,radio,bz) values('" .$_POST['xm']."','" .$_POST['xxmc']."','" .$_POST['zy']."','" .$_POST['szd']."','" .$_POST['qq']."','" .$_POST['yx']."','" .$_POST['tel']."','" .$_POST['radio']."','" .$_POST['bz']."')";mysql_query($sqlstr) or die(mysql_error());