下载phpstudy参考官网链接
https://www.xp.cn/wenda/389.html
第一步:从官网下载phpstudy V8.0版安装包
下载地址:
1、64位:http://public.xp.cn/upgrades/phpStudy_64.7z
2、32位:http://public.xp.cn/upgrades/phpStudy_32.7z
第2步:安装解压成功
第3步:可以新建数据库,当然默认已经有一个root了。
第4步:下载安装一个数据库工具:
第5步:完事在数据库页面导入后台写好的数据表,当然也可以自己去建表
这个是后台写的数据库字段以记事本打开的,后面可以直接复制到数据库工具里面去
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50553
Source Host : localhost:3306
Source Database : nshop
Target Server Type : MYSQL
Target Server Version : 50553
File Encoding : 65001
Date: 2020-04-07 15:12:06
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tb_customer
-- ----------------------------
DROP TABLE IF EXISTS `tb_customer`;
CREATE TABLE `tb_customer` (
`tid` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) DEFAULT NULL,
`tel` varchar(11) DEFAULT NULL,
`img` varchar(256) DEFAULT NULL,
`mesg` varchar(255) DEFAULT NULL,
PRIMARY KEY (`tid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_customer
-- ----------------------------
新建好的数据库
第6步:随便写点数据
数据库就有几条数据啦!
接下来就是写接口调用数据库里面的内容,这个要后台写程序啦,后续更新......