设置Zeed 软件所有 UTF-8 编码
设置单个项目 UTF-8 的编码
Demo1.php
<?php header('Content-Type:text/html; charset=utf-8;'); //第一步,连接到 Mysql 服务器 3306 //第二步参数,服务器地址;第二个参数,服务器的用户名;第三个参数,服务器密码 //@ 如果出错了,不要出现警告或错误,直接忽略 //die 函数之前,先连接一下,报错流程 //echo (!!mysql_connect('localhost','root','123456')); // if(!$conn = @mysql_connect('localhost','root','123456')){ // echo '数据库连接失败,错误信息'.mysql_error(); // exit; // } // echo $conn; // echo '连接成功了,我才能显示!'; //常量参数 define('DB_HOST','localhost'); define('DB_USER','root'); define('DB_PWD','123456'); define('DB_NAME','school'); //第一步,连接数据库 //mysql_connect -- 打开一个到 MySQL 服务器的连接 $conn = @mysql_connect(DB_HOST,DB_USER,DB_PWD) or die('数据库连接失败,错误信息'.mysql_error()); //第二步,选择指定的数据库,设置字符集 //mysql_select_db -- 选择 MySQL 数据库 mysql_select_db(DB_NAME) or die ('数据库错误,错误信息:'.mysql_error()); mysql_query('SET NAMES UTF8')or die('字符集设置错误,错误信息'.mysql_error()); //第三步,从这个数据库里选一张表(grade),然后把这个表的数据库提出(获取记录集) $query = "SELECT * FROM grade"; //mysql_query -- 发送一条 MySQL 查询 $result = mysql_query($query) or die ('SQL错误:'.mysql_error()); //$result 就是记录集 //第四步,将记录集里的数据显示出来 print_r(mysql_fetch_array($result,MYSQL_NUM));//按照数字下标来显示 //print_r(mysql_fetch_array($result,MYSQL_ASSOC)); //按照字符串下标来显示 print_r(mysql_fetch_array($result,MYSQL_NUM)); print_r(mysql_fetch_array($result,MYSQL_NUM)); //第五步,释放记录集资源 //mysql_free_result -- 释放结果内存 mysql_free_result($result); //最后一步:关闭数据库 //mysql_close -- 关闭 MySQL 连接 echo mysql_close(); ?>
config.php
<?php header('Content-Type:text/html; charset=utf-8;'); //常量参数 define('DB_HOST','localhost'); define('DB_USER','root'); define('DB_PWD','123456'); define('DB_NAME','school'); //第一步,连接MYSQL 服务器 $conn = @mysql_connect(DB_HOST,DB_USER,DB_PWD) or die('数据库连接失败,错误信息'.mysql_error()); //第二步,选择指定的数据库,设置字符集 mysql_select_db(DB_NAME) or die ('数据库错误,错误信息:'.mysql_error()); mysql_query('SET NAMES UTF8')or die('字符集设置错误,错误信息'.mysql_error()); ?>
Demo2.php
<?php require 'config.php'; //新增数据 // $query = "INSERT INTO grade ( // name, // email, // point, // regdate) // VALUES ( // '景临境', // 'jly@163.com', // '78', // NOW() // )"; //$query = "INSERT INTO grade (name,email,point,regdate) VALUES ('与共','abc@163.com','78',NOW() )"; //mysql_query($query) or die('新增错误:'.mysql_error()); //修改数据 // $query = 'UPDATE grade SET point=66 WHERE id = 7'; // @mysql_query($query) or die('修改失败:'.mysql_error()); //删除数据 // $query = 'DELETE FROM grade WHERE id= 4'; // @mysql_query($query) or die('删除失败:'.mysql_error()); //显示数据 $query = 'SELECT id,name,email FROM grade '; $result = mysql_query($query) or die('SQL 语句有误:'.mysql_error()); // $row = mysql_fetch_array($result); // echo $row[2]; // $row = mysql_fetch_array($result); // echo $row[2]; //把结果集转换成数组赋给 $row ,如果有数据,就为真 while (!!$row = mysql_fetch_array($result)){ echo $row['id'].'----'.$row['name'].'-----'.$row['email']; echo '<br/>'; } mysql_close(); ?>
Demo3.php
<?php require 'config.php'; //显示数据 $query = 'SELECT id,email,name FROM grade '; $result = mysql_query($query) or die('SQL 语句有误:'.mysql_error()); // print_r(mysql_fetch_array($result)); // print_r(mysql_fetch_array($result,MYSQL_ASSOC)); // print_r(mysql_fetch_row($result)); // print_r(mysql_fetch_assoc($result)); // while (!!$row = mysql_fetch_array($result)){ // echo $row['id'].'----'.$row['name'].'-----'.$row['email']; // //print_r(mysql_fetch_lengths($result)); // echo mb_strlen($row['name'],'utf-8'); // echo '<br/>'; // } //echo mysql_field_name($result,2); //name //echo mysql_num_fields($result); //3 for($i=0; $i<mysql_num_fields($result);$i++){ echo mysql_field_name($result,$i); //id----email----name---- echo '----'; } echo '<br/>'; echo mysql_num_rows($result); //求出多少条数据 echo '<br/>'; echo mysql_get_client_info();//取得 MySQL 客户端信息 //5.0.51a echo '<br/>'; echo mysql_get_host_info();//取得 MySQL 主机信息 //localhost via TCP/IP echo '<br/>'; echo mysql_get_proto_info();//取得 MySQL 协议信息 //10 echo '<br/>'; echo mysql_get_server_info();//取得 MySQL 服务器信息 //5.0.51b-community-nt-log mysql_close(); ?>
相关推荐
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16 章 网络 253 第17 章 php 和ldap 268 第18 章 会话处理程序 280 第19 章 用smarty 模板化 296 第20 章 web 服务 314 第21 章 保护网站安全 326 第22 章 用jquery 和php 创建ajax增强特性 334 第23 章 构建面向...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 Web应用的安全 16.1处理安全性问题的策略 16.1.1 以正确心态为开始 16.1.2 安全性和可用性之间的平衡 16.1.3 安全监视 16.1.4 基本方法 16.2 识别所面临的威胁 16.2.1 访问或修改敏感数据 16.2.2 数据丢失或...
第16章 网络 第17章 PHP和LDAP 第18章 会话处理器 第19章 用Smarty模板化 第20章 Web服务 第21章 安全PHP编程 第22章 SQLite 第23章 PDO介绍 第24章 MySQL介绍 第25章 安装和配置MySQL 第26章 众多MySQL客户端 第27...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...
第16章 性能优化 共18页.pptx 第17章 MySQL Workbench5.2 的使用 共15页.pptx 第18章 MySQL Replication 共27页.pptx 第19章 MySQL Cluster 共49页.pptx 第20章 MySQL管理利器——MySQL Utilities 共5页.pptx 第21章...