添加分类到数据库中,出现乱码,加了header("content-type:text/html;charset=utf-8");
还是乱码
还是乱码
2016-12-28
因为include.php 文件把所有函数库都包含进来了include.php就能用被包含的文件的函数变量等等。,其他把include.php 文件包含的文件,就能用到 include.php,能使用的函数和变量等等了!!!这过程化的写法,也要有个核心资源文件,就是include.php 才能容易管理。。
2016-12-27
include 那connect() 调用函数,就把数据库打开了,然后所有把include.php引入的文件 将能直接使用数据库里面的方法不用每次又打开
2016-12-27
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in D:\xampp\xampp\htdocs\banana_shop\banana_shop\lib\mysql.func.php on line 53
NULL
NULL
create database show_Imooc;
CREATE DATABASE IF NOT EXISTS show_Imooc;
USE show_Imooc;
DROP TABLE IF EXISTS imooc_admin;
CREATE TABLE imooc_admin(
id tinyint unsigned auto_increment key,
usename varchar(20) not null unique,
password char(32) not null,
email varchar(50) not null
)
我是这样写的这只是一部分
CREATE DATABASE IF NOT EXISTS show_Imooc;
USE show_Imooc;
DROP TABLE IF EXISTS imooc_admin;
CREATE TABLE imooc_admin(
id tinyint unsigned auto_increment key,
usename varchar(20) not null unique,
password char(32) not null,
email varchar(50) not null
)
我是这样写的这只是一部分