[PHP学习笔记]
abxn2002
这个作者很懒,什么都没留下…
展开
-
Encrypting Password using md5() function
Syntax$password="123456"; md5($password); Use md5(); to en原创 2009-10-06 23:01:00 · 553 阅读 · 0 评论 -
What does dirname(__FILE__) and basename(dirname(__FILE__)) do?
from:http://thedaneshproject.com/posts/what-does-dirname__file__-and-basenamedirname__file__-do/ Was helping a friend fix his php script today. He was not too sure about what “dirname(__FILE__)” d转载 2010-04-15 13:42:00 · 1251 阅读 · 1 评论 -
Coding a Simple Guestbook Using PHP and MySQL
from:http://www.webpronews.com/topnews/2004/04/02/coding-a-simple-guestbook-using-php-and-mysql This is a short article which shows you how to make a simpleguestbook by capturing the visitors i原创 2009-10-13 08:10:00 · 5900 阅读 · 0 评论 -
ubuntu 8.04 桌面版 LAMP 环境(包括phpmyadmin)配置。
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明http://linux.blogbus.com/logs/29560655.html 来源于官方wiki一.安装 首先,如果您花费一点时间熟悉一下常用的命令 会非常有帮助! 安装LAMP并没有那么神秘。 一步一步来。这比windows下面那麻烦的配置 简单多了!原创 2009-10-09 07:55:00 · 604 阅读 · 0 评论 -
PHP mysql_real_escape_string() 函数
定义和用法mysql_real_escape_string() 函数转义 SQL 语句中使用的字符串中的特殊字符。下列字符受影响:/x00/n/r/"/x1a如果成功,则该函数返回被转义的字符串。如果失败,则返回 false。语法mysql_real_escape_string(string,connection)参数原创 2009-10-08 21:33:00 · 456 阅读 · 0 评论 -
nstalling PHP 5.3 On Ubuntu
from:http://www.brandonsavage.net/installing-php-5-3-on-ubuntu/ With the release of PHP 5.3 to the world, Iwanted to be one of the first to try it. The problem is that thetypical package man原创 2009-10-08 20:36:00 · 582 阅读 · 0 评论 -
Cannot send session cache limiter - headers already sent 的php错误怎么解决?
问题描述:例如下面是错误的 Session_Start();//之前在第一行已经有输出 .... ?> 错误产生的原因是:由于没有制定session文件的存放路径.解决方法:方法一:如果是windows系统(1)在c盘建立文件夹tmp(2)打开PHP.ini,找到session.save_path,修改为session.save_原创 2009-10-06 10:18:00 · 860 阅读 · 0 评论 -
用PHP的ob_start();控制您的浏览器cache!
http://fengyun.blog.phpchina.com Output Control函数可以让你自由控制脚本中数据的输出。它非常地有用,特别是对于:当你想在数据已经输出后,再输出文件头的情况。输出控制函数不对使用header() 或 setcookie(), 发送的文件头信息产生影响,只对那些类似于 echo() 和 PHP 代码的数据块有作用。我们先举一个简单原创 2009-10-06 16:45:00 · 502 阅读 · 0 评论 -
php 中的 __FILE__ 和 dirname(__FILE__)
来自:http://www.yw-seo.cn/seo/phpziyuan/151.html__FILE__ 是当前路径+文件名dirname(__FILE__)返回当前文件路径的路径部分 例如当前文件是 /home/data/demo/test.php ,则 __FILE__ 得到的就是完整路径echo __FILE__;即/home/data/demo/test.php原创 2009-10-07 17:55:00 · 569 阅读 · 0 评论 -
优化PHP代码的40条建议
优化PHP代码的40条建议40 Tips for optimizing your php Code原文地址:http://reinholdweber.com/?p=3英文版权归Reinhold Weber所有,中译文作者yangyang(aka davidkoree)。双语版可用于非商业传播,但须注明英文版作者、版权信息,以及中译文作者。翻译水平有限,请广大PHPer指正。1.原创 2009-10-07 17:34:00 · 444 阅读 · 0 评论 -
htmlspecialchars()函数和html_entity_decode()函数
test.html:http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> Full Page Editing - CKEditor Sample CKEditor Sample <p>This is some <strong>sam原创 2010-04-09 23:30:00 · 2700 阅读 · 0 评论