第一:先構建「進入資料庫,並執行語句方法」的類
<?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...