資料的增刪改練習 新聞訊息的發布 更改 刪除

2022-07-29 01:51:11 字數 2243 閱讀 6778

第一:先構建「進入資料庫,並執行語句方法」的類

<?php 

class chaxun

else}}

第二:檢視並顯示新聞

檢視新聞

newsid

title

author

source

date

update

delete

<?php

include("chaxun.class.php");

$db=new chaxun();

$sql="select * from news";

$attr=$db->query($sql);

//var_dump($attr);

foreach($attr as $v)

update

delete

";} ?>

發布新聞

第三步:發布新聞 

1.頁面顯示**

發布新聞

2.發布新聞後台執行

<?php 

$title=$_post["title"];

$author=$_post["author"];

$source=$_post["source"];

$content=$_post["content"];

date_default_timezone_set("etc/gmt-8");

$time=date("y-m-d h:i:s",time());

include("chaxun.class.php");

$db=new chaxun();

$sql="insert into news (title,author,source,content,time)

values('','','','','')";

$r=$db->query($sql,1);

if($r)

else

第四步:更改新聞內容

4.1頁面顯示**:

更改新聞

4.2更改新聞內容後端處理**

<?php 

$newsid=$_post["newsid"];

$title=$_post["title"];

$author=$_post["author"];

$source=$_post["source"];

$content=$_post["content"];

date_default_timezone_set("etc/gmt-8");

$time=date("y-m-d h:i:s",time());

include("chaxun.class.php");

$db=new chaxun();

$sql="update news set title='',author='',source='',content='',time='' where newsid=";

$r=$db->query($sql,1);

if($r)

else

第五步:刪除新聞(只有後台執行**)

<?php 

$newsid=$_get["newsid"];

include("chaxun.class.php");

$db=new chaxun();

$sql="delete from news where newsid=";

$r=$db->query($sql,1);

if($r)

else

資料的增刪改

查詢表中記錄 select from person 新增一條記錄 insert into person pid,pname values 1,小明 commit 修改一條記錄 update person set pname 小馬 where pid 1 commit 三個刪除 刪除表中全部記錄 de...

資料的增刪改

1,insert into 表名 欄位1,欄位2.values 值1,值2,2,insert into 表名 values 值1,值2,1,insert into 表名 欄位2,欄位3.values 值2,值3.insert into 表名 values 值1,值2,值1,值2,值1,值2,inse...

mysql基礎複習 資料增刪改練習

create table my employees id int 10 first name varchar 10 last name varchar 10 userid varchar 10 salary double 10 2 create table users id int userid v...