
php
文章平均质量分 77
PAUL_shuo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php下载文件头信息
header("Content-type:application/octet-stream"); header("Accept-Ranges:bytes"); header("Accept-Length:文件大小"); header("Content-Disposition:attachment;filename=文件名");原创 2014-08-23 15:13:46 · 692 阅读 · 0 评论 -
编写php程序完成对用户表显示的步骤
<?php //mysql扩展库操作mysql数据库步骤如下 //1. 获取连接 $conn=mysql_connect("127.0.0.1","root","root"); if(!$conn){ die("连接失败".mysql_error()); }转载 2014-08-25 16:15:20 · 743 阅读 · 0 评论 -
利用php的$_SERVER查看服务器信息
将如下代码写入一个php文件原创 2014-08-19 16:01:05 · 1094 阅读 · 0 评论