PHP与MySQL的基本语法、及连接使用(基础)
PHP
第一个HelloWorld
* PHP的简单了解
* 文件扩展名 php
* 代码写在与 ?>之间
* PHP代码每句话以分号结束
* PHP的注释:
单行用 // 或 # /内容/
多行用 /**/
1 | 如: |
PHP语法
变量
php中,定义一个变量要以$符号打头,变量名区分大小写
php的变量的数据类型,是变化的,php变量的数据类型是由运行时的上下文决定
字符串的连用
1 | echo "Hello World" . "<br>" . "小杨"; |
if语句
1 | $a = 123; |
数组及遍历循环
1 | $arr = Array(6,7,8,9,4,6); |
count()用来统计数组的长度
php数组返回
1 | $arr = ["name"=>"小杨","age"=>28]; |
函数
1 | function add($a,$b){ |
php接收前端的数据
1 | $_GET["参数名(name)"]; |
MySQL
1 | creat database 创建数据库 |
1 | creat table 表名 () 创建表 |
——-增
insert into 表名 [字段1,字段2..字段n]
values (值1,值2,值n);
1 | insert into student |
——删
delete from 表名 (删除表内的所有内容,但是表还在)
where 限制条件
1 | delete from student |
——改
update 表名 set 字段1=值1 字段2=值2…
where 更新条件
1 | update student set stu_name = "杜甫" |
——查
select * from 表名 (查询表内所有内容)
select from 表名 [查询条件] 条件查询
1 | select from students where age >21 ; |
排序查询
关键字为order by 与 asc,desc,通常位于表名之后
排序分为两种,升序(asc)和降序(desc)
select 字段 from 表名 order by 字段 排序方式
1 | select * from student order by age desc; |
范围查询
运算符一般配合逻辑运算符使用,可以使条件限制更加具体,将条加限制在一个范围内
1 | select * from students where id<5 and age>20; |
in与not in 运算符
关键字为in,通常位于条加你字段后面
select 字段 from 表名 where 字段 in (列表)
1 | select * from student where age in(22,23,24,25); |
php连接MySQL的步骤
1 | php连接mysql |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 小楊.Blog!
评论
ValineDisqus