xml是一种描述数据结构的方法,在xml中没有预定义的标签,所有的标签都是自定义的。
Continue reading...php mysql delete语句
mysql使用delete语句删除数据库中的数据,delete from 表名 where 条件。
Continue reading...php更新mysql数据库
sql语句update用来更新mysql数据库中的内容,php直接调用sql语句。
Continue reading...php查询mysql数据库
select 字段名 from 表明 where 条件 orderby 条件,用于从数据库中查询数据。php查询my...
Continue reading...php向表中插入数据
使用insert into 语句向表中插入数据。语法为:
Continue reading...php创建数据库和表
php用CREATE DATABASE 语句来创建数据库。
Continue reading...php连接mysql数据库
php用mysql_connect函数来连接mysql数据库,
Continue reading...php $_SERVER详细参数解析
$_SERVER用来获取服务器的一些信息,有很多参数,解析如下:
Continue reading...php过滤器
Web程序后台处理请求时,不能相信客户端的输入,要把一切输入都看做带有恶意数据。
Continue reading...php发送email
php支持从程序中发送email,mail()函数用于从脚本中发送邮件。
Continue reading...php操作session
session用来管理web服务器与浏览器中间的会话,
Continue reading...php操作cookie
Cookie是web服务器放在访问者浏览器中的一个很小的文本文件,用来识别不同的用户。
Continue reading...
近期评论