-
2014-06-17
基本知识
<?php
echo "1 , php.ini中把display_errors=On才显示错误位置<br>";
echo "2 ,习惯使用echo和print打印<br>";
echo "wamp安装完后不能使用是因为安装过iis,是apache无法…
http://www.wfuyu.com/php/843.html
-
2014-01-14
本文章来为php初学者介绍在php配置好之后连接mysql提示Call to undefined function 'mysql_connect()的解决办法。
先来按书上测试一下php连接mysql,实例代码如下:
<?php
$link=mysql_connect('localhost','root','123456');
if(…
http://www.wfuyu.com/php/838.html
-
2013-10-10
看看连接的那一行,确定所有的Lib库的包含文件都在正确的位置。通常你可能没用'-ldl' 并且有任何的必须Lib库或者是使用的数据库有问题。
如果你连接Apache 1.2.x,是否记得配置文件中加到EXTRA_LIBS的附加信息,并重新运行Apache配置文件?参考英文的INSTALL文件,有更多的信…
http://www.wfuyu.com/php/836.html
-
2013-11-02
下在要讲的是关于利用php的正则来验证用户输入的电话号码是否合中国电信电话号码规则,手机号码是否为中国移动或联通的手机号码.
PHP实例代码如下:
function funcphone($str)//电话号码正则表达试
{
return (preg_match("/^(((d{3}))|(d…
http://www.wfuyu.com/php/833.html
-
2013-11-16
基本知识:就是对id对进行order by id desc 或 order by id asc进行排序,然后再判断比当前id > or小于当前文章id的,实例的sql语句如下:
select * from news where id<$id order by id desc limit 0,1
select * from news where id>$id order by id desc limit 0,1
表…
http://www.wfuyu.com/php/831.html
-
2013-11-13
NetBeans 中, PHPRedis 的代码提示功能,文件放在 phpruntime/ 下面就可以了。
代码片段:
Copy to Clipboard引用的内容:[www.veryhuo.com]
<?php class Redis { public function __construct () {} public function connect () {} public function pconnect () {} public function close () {} …
http://www.wfuyu.com/php/827.html
-
2013-11-10
使用PinPHP有一段时间了,利用PinPHP在Sae上搭了个环境,运营一个月左右的《时尚美汇》,所以最近也一直在研究这套程序,顺便做些二次开发,加入些自己的想法。例如之前写过的博文:加入人人网帐号登录(淘宝登录其实也做了,只是在淘宝应用中心上用)、修改PinPHP采集。
好吧,今天来说说关于PinPHP后…
http://www.wfuyu.com/php/824.html
-
2013-11-03
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Untitled</title>
<script language="Java…
http://www.wfuyu.com/php/822.html
-
2014-05-24
1.分号的例外
对于 MySQL,第一件你必须牢记的是它的每一行命令都是用分号 (;) 作为结束的,但……没有完全绝对的事,在这儿也是一样,当一行 MySQL 被插入在 PHP 代码中时,最好把后面的分号省略掉,例如:
mysql_query ("INSERT INTO tablename&n…
http://www.wfuyu.com/php/818.html
-
2014-06-17
网(LieHuo.Net)教程 PHPCMS商务中心力发布产品时数据库提示有错,错误代码如下:
以下为引用的内容:MySQL Query : UPDATE `jiaozhou_category` SET `pitems`=`pitems`+1 WHERE `catid` IN () MySQL Error : You have an error in your SQL syntax; check the manual…
http://www.wfuyu.com/dedecms/815.html