PHP Development Enterprise Pengubahsuaian Tutorial Laman Web Hubungi Kami Maklumat
Sekarang mari kita laksanakan fungsi pengubahsuaian
Soal maklumat dalam pangkalan data melalui id , kemudian paparkan maklumat dalam borang, kemudian ubah suai kandungan borang, klik Ubah suai, dan laksanakan fungsi pengubahsuaian
Mari kita lihat kod:
<?php require_once('conn.php'); $id = $_GET['id']; $sql = "SELECT * from contact where id='$id'"; $res = mysql_query($sql); $row = mysql_fetch_array($res); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>修改公司信息</title> <style type="text/css"> .ipt{width:180px;height:30px;border-radius:5px; outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;} .txt{width:250px;height:200px;} .sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;} </style> </head> <body> <form method="post" action="modifyontact.php?id=<?php echo $id;?>"> 公司地址:<input type="text" name="site" class="ipt" value="<?php echo $row['site'];?>"> </br></br> 公司电话:<input type="text" name="tel" class="ipt" value="<?php echo $row['tel'];?>"> </br></br> 技术支持:<input type="text" name="suppot" class="ipt" value="<?php echo $row['suppot'];?>"> </br></br> 售后电话:<input type="text" name="nexttel" class="ipt" value="<?php echo $row['nexttel'];?>"> </br></br> 公司传真:<input type="text" name="fax" class="ipt" value="<?php echo $row['fax'];?>"> </br></br> 公司主页:<input type="text" name="home" class="ipt" value="<?php echo $row['home'];?>"> </br></br> 电子邮件:<input type="text" name="email" class="ipt" value="<?php echo $row['email'];?>"> </br></br> <input type="submit" value="修改" class="sub"> </form> </body> </html>
Seperti kod di atas, klik butang ubah suai untuk lulus id, terima di halaman ini, tanya dan paparkan maklumat dalam pangkalan data berdasarkan id
Diubah suai Selepas kandungan, borang diserahkan ke halaman modifyontact.php
Mari lihat kod halaman modifyontact.php:
<?php require_once('conn.php'); $id = $_GET['id']; $site = $_POST['site']; //地址 $tel = $_POST['tel']; //电话 $suppot = $_POST['suppot'];//技术支持 $nexttel = $_POST['nexttel'];//售后电话 $fax = $_POST['fax']; //公司传真 $home = $_POST['home']; //公司首页 $email = $_POST['email']; //电子邮件 $sql = "UPDATE contact set site='$site',tel='$tel',suppot='$suppot',nexttel='$nexttel',fax='$fax',home='$home',email='$email' where id='$id'"; // echo $sql;die; $res = mysql_query($sql); if($res){ echo "<script>alert('修改公司信息成功');location.href='contact.php'</script>"; }else{ echo "<script>alert('修改公司信息失败');history.go(-1);</script>"; } ?>
Dapatkan maklumat borang , kemudian tulis pernyataan yang dikemas kini dan laksanakan pernyataan sql Tentukan sama ada ia berjaya, kami akan melengkapkan pengubahsuaian dan melompat ke halaman paparan Jika pengubahsuaian gagal, kembali ke halaman sebelumnya