亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Papan mesej pembangunan PHP papan mesej tutorial menerbitkan halaman PHP

Buat fail 'ressage_delete.php'


Fungsi yang dilengkapkan oleh halaman ini adalah seperti berikut

4.jpg


rreee


Meneruskan pembelajaran
||
<?php session_start(); header("content-type:text/html;charset=utf-8"); $name=$_POST['name']; $email=$_POST['email']; $content=$_POST['content']; $vcode=$_POST['vcode']; //if($name==''){ // echo "<script>alert('請(qǐng)輸入你的姓名');location='" . $_SERVER['HTTP_REFERER'] . "'</script>"; // exit; //} //if($content==''){ // // echo "<script>alert('留言?xún)?nèi)容不能為空');location='" . $_SERVER['HTTP_REFERER'] . "'</script>"; // exit; // //} //if($vcode!=$_SESSION['VCODE']){ // // echo"<script>alert('你的驗(yàn)證碼不正確,請(qǐng)重新輸入');location='".$_SERVER['HTTP_REFERER']. "'</script>"; // exit; //} $conn=mysqli_connect('localhost','root','root','ressage'); mysqli_set_charset($conn,'utf8'); //設(shè)定字符集 if($conn){ $sql=mysqli_prepare($conn,"insert into ressage_user(name,email,content,ressage_time) VALUES (?,?,?,now())"); $param=mysqli_stmt_bind_param($sql,'sss',$name,$email,$content); $result=mysqli_stmt_execute($sql); if($result){ echo "<script>alert('留言成功');location.href='ressage.php';</script>"; }else{ echo"<script>alert('你的留言失敗,請(qǐng)稍后重試');location.href='ressage.php';</script>"; exit; } }else{ die("數(shù)據(jù)庫(kù)連接失敗". mysqli_connect_error()); } ?>