Warning: Undefined array key "topic_id" in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 5
Warning: Undefined variable $forum_ in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 21
Warning: Undefined variable $file in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 35
分类:PHPBB论坛程序,插件收集与修改
12-02-16
1:打开php.ini文件
设置 include_path= "c:"
2:写两个文件
auto_prepend_file.php 和 auto_append_file.php 保存在c盘,他们将自动依附在每个php文件的头部和尾部.
3:在php.ini中找到:
[code:mdrmdov9]Automatically add...
12-02-16
[code:2q7y02ht]$Date_1="2003-7-15";//也可以是:$Date_1="2003-6-25 23:29:14";
$Date_2="1982-10-1";
$Date_List_1=explode("-",$Date_1);
$Date_List_2=explode("-"...
12-02-16
[code:1tiszdvu]$a="PHP";
foo();
Function foo()
{
global $a;//删除这里看看是什么结果
Echo "$a";
} [/code:1tiszdvu]
9:我怎么知道系统默认支持什么函数
[code:1tiszdvu]$arr = get_defined_functio...
12-02-16
在表格,字段前面加上"`",这样就不会因为误用关键字而出现错误,
当然我并不推荐你使用关键字.
例如
[code:275ey830]$Sql="INSERT INTO `xltxlm` (`author`, `title`, `id`, `content`, `date`) VALUES ('xltxlm', 'u...
12-02-16
一般来说,要截取的变量来自Mysql,首先要保证那个字段长度要足够长,一般为char(200),可以保持100个汉字,包括标点.
[code:2oylklea]$str="这个字符好长呀,^_^";
$Short_Str=showShort($str,4);//截取前面4个汉字,结果为:...
12-02-16
[php]
[code:254s8zdi]$Var="hello php";//修改为$Var=" hello php";试试得到什么结果
$post= "receive.php?Name=".$Var;
header("location:$post"); [/code:254s8zdi]
re...
12-02-16
3:如何使用session
凡是与session有关的,之前必须调用函数session_start();
为session付值很简单,如:
[code:8ynw32xd]Session_start();
$Name = "这是一个Session例子";
Session_Register("Name");//注意,不要...
12-02-16
转载自httphtml
本文对PHP编程中易犯错误进行总结,希望新手能够避免!
1:为什么我得不到变量
我在一网页向另一网页POST数据name,为什么输出$name时却得不到任何值?
在PHP4.2以后的版本中register_global默认为off
若想取得从另一...
11-08-17
因为刚更换了服务器,空间支持PHP5.3 运行PHPBB论坛的时候显示
[code:1uz6hh85][phpBB Debug] PHP Notice: in file /index.php on line 89: date() [function.date]: It is not safe to rely on th...
11-04-22
如题,很简单
将上面代码中的
[code:28jhmmb8]<param name="AutoStart" value="False">[/code:28jhmmb8]
替换为
[code:28jhmmb8]<param name="AutoStart" value="True">[/code:28jh...