Blogger Information
Blog 13
fans 0
comment 0
visits 10369
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
7月25日作业:改写23日案例,用数据库管理网站内容
执着的博客
Original
648 people have browsed it

7月25日作业:改写23日案例,用数据库管理网站内容

只提交了header.php修改的代码 ,其它文件没有变动

实例

<?php
// 1.边接数据库
require __DIR__ . '/connect.php';

// 2.获取影视信息
$sql = 'SELECT `mov_id`, `name`,`image`,`detail`,`cate_id`  FROM `movies`';//查询
$stmt = $pdo-> prepare($sql);//预处理
$stmt->execute();//执行
$movies=$stmt->fetchAll(PDO::FETCH_ASSOC);//取得到的数据保存到变量数组

// 3.获取栏目信息
$sql = 'SELECT `cate_id`, `name`,`alias`  FROM `category`';
$stmt = $pdo-> prepare($sql);
$stmt->execute();
$cates=$stmt->fetchAll(PDO::FETCH_ASSOC);
$cate_count = count($cates);

// 4.获取网站的配置信息
$sql = 'SELECT *  FROM `system` LIMIT 1';
$stmt = $pdo-> prepare($sql);
$stmt->execute();
$system = $stmt->fetch(PDO::FETCH_ASSOC);
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Correction status:qualified

Teacher's comments:从这个案例, 主要是让大家感觉到用数据库来管理网站数据的便利性
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post