php增刪改查範例自己寫的demo_PHP教學課程

WBOY
發布: 2016-07-21 16:12:26
原創
739 人瀏覽過

1.連結資料庫通用方法:conn.php

複製程式碼 程式碼如下:

///第一步:連結資料庫
$conn=@mysql_connect("localhost:3306","root","root")or die ("mysql連結失敗");
//第二步: 選擇指定的資料庫,設定字元集
@mysql_select_db("php_blog",$conn) or die ("db連結失敗".mysql_error());
mysql_query('SET NAMES UTF8')or die ("字元集設定錯誤");
?>

2.增加add.php
複製程式碼
複製程式碼

程式碼如下:


include("conn.php");//引入連結資料庫
if(!empty($_POST['sub'])){
$title =$_POST['title'];
$con=$_POST['con'];
echo $sql="insert into news(id,title,dates,contents) value (null,'$title ',now(),'$con')" ;
mysql_query($sql);
echo"插入成功";
}
?>

標題:
內容:


3.刪除del .php
複製程式碼 程式碼如下:

include("conn.php");//匯入連結資料庫
<?php <BR>include ("conn. php");//導入連結資料庫<br>if(!empty ($_GET['id'])){ <br>$sql="select * from news where id='".$_GET ['ID' ]。 ”'”; <br>$query=mysql_query($sql); <br>$rs=mysql_fetch_array($query); <br>} <br>if(!empty($_POST['sub'])){ <br>$title=$_POST['title']; <br>$con=$_POST['con']; <br>$hid=$_POST['hid']; <br>$sql="更新新聞集title='$title',contents='$con' where id='$hid' limit 1 "; <br>mysql_query($sql); <br>echo "<script>alert('更新成功') ; location.href='index.php'</script>"; <br>echo"更新成功"; <br>} <br>? > <br>
登入後複製


標題:

內容:
;



if(!empty($_GET['del'])){ $d=$_GET['del']; $ sql="從新聞刪除id ='$d'"; $query=mysql_query($sql); echo "刪除成功"; ?>


前>


4,修改.php頁





<?php <BR>include("conn.php");//匯入連結資料庫<br>if(!empty ($_GET['id'])) { <br>$sql="select * from news where id='".$_GET['id']."'"; <br>$query=mysql_query($sql); <br>$rs=mysql_fetch_array( $query); <br>} <br>if(!empty($_POST['sub'])){ <br>$title=$_POST['title']; <br>$con=$_POST[' con']; <br>$hid=$_POST['hid']; <br>$sql="更新新聞集title='$title',contents='$con' where id='$hid' limit 1 "; <br>mysql_query($sql); <br>echo "<script>alert('更新成功'); location.href='index.php'</script>"; <br>echo"更新成功" ; <br>} <br>? > <br>
登入後複製


標題:

內容:




5.查,清單頁
<a href="add.php">新增內容</a>; <br><hr> <br><hr> <br> <br>> <br><input type="submit" name="subs" value="搜尋"> <br>表格> <br><?php <BR>include("conn.php");//匯入連結資料庫<br>if (!empty($_GET['keys'])){ <br>$w=" title像'%".$_GET['keys']."%'"; <br>}其他{ <br>$ w=1; <br>} <br>$sql="select * from news where $w order by id desc"; <br>$query=mysql_query($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); <br>while($rs=mysql_fetch_array($sql); $query)){ <br>?>; <br><h2>標題:<a href="view.php?id=<?php%20echo%20%24rs%5B'id'%5D%20?>"><?php echo $ rs['title' ] ?></a> <a href="edit.php?id=<?php%20echo%20%24rs%5B'id'%5D%20?>">編輯</a>||<a href="del.php?del=%20<?php%20echo%20%24rs%5B'id'%5D%20?>">刪除</a>
</h2> <br>
登入後複製



  • }

    ?>



    http://www.bkjia.com/PHPjc/313655.htmlwww.bkjia.com
    truehttp: //www.bkjia.com/PHPjc/313655.html
    TechArticle1.連結資料庫通用方法:conn.php 複製程式碼如下: ?php //第一步:連結資料庫$conn=@mysql_connect("localhost:3306","root","root")or die ("mysql連結失敗...
    來源:php.cn
    本網站聲明
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板