php.ini is searched in these locations (in order)
[ 2006-05-25 14:54:11 | 作者: admin ]
设置php的配置文件
到php的官网查了一下php.ini的资料http://www.php.net/configuration
php.ini is searched in these locations (in order):
SAPI module specific location (PHPIniDir directive in Apache 2, -c command line option in CGI and CLI, php_ini parameter in NSAPI, PHP_INI_PATH environment variable in THTTPD)
HKEY_LOCAL_MACHINE\SOFTWARE\PHP\IniFilePath (Windows Registry location)
The PHPRC environment variable
...
阅读全文…
到php的官网查了一下php.ini的资料http://www.php.net/configuration
php.ini is searched in these locations (in order):
SAPI module specific location (PHPIniDir directive in Apache 2, -c command line option in CGI and CLI, php_ini parameter in NSAPI, PHP_INI_PATH environment variable in THTTPD)
HKEY_LOCAL_MACHINE\SOFTWARE\PHP\IniFilePath (Windows Registry location)
The PHPRC environment variable
...
阅读全文…
php模块化编程
http://mod.pclib.com/html/view/Channel_1.html
强烈推荐的php相关中文在线手册
http://pclib.com/
/online/Apache2.2中文手册
/online/php5中文手册
/online/mysql3.23.7-alpha中文手册
/online/mysql4.1.0-alpha中文手册
/online/mysql5中文手册
/online/php5中文手册(请使用UTF-8编码)
/online/adodb中文手册
/online/smarty中文手册
/online/cvs中文手册
/online/Hibernate-v3中文手册
/online/Css2中文手册
/online/python v2.4中文手册
FCS参考
http://blog.liu21st.com/
...
阅读全文…
http://mod.pclib.com/html/view/Channel_1.html
强烈推荐的php相关中文在线手册
http://pclib.com/
/online/Apache2.2中文手册
/online/php5中文手册
/online/mysql3.23.7-alpha中文手册
/online/mysql4.1.0-alpha中文手册
/online/mysql5中文手册
/online/php5中文手册(请使用UTF-8编码)
/online/adodb中文手册
/online/smarty中文手册
/online/cvs中文手册
/online/Hibernate-v3中文手册
/online/Css2中文手册
/online/python v2.4中文手册
FCS参考
http://blog.liu21st.com/
...
阅读全文…
想着新写一套 基于php smarty(或fcs) 的cms
[ 2006-05-22 21:55:24 | 作者: admin ]
实现功能如下:
1、基本的cms所涉及的功能
2、程序和界面分离
3、多模板支持
4、多语言支持
1、基本的cms所涉及的功能
2、程序和界面分离
3、多模板支持
4、多语言支持
关于php处理多选框checkbox的方法
[ 2006-04-11 15:44:31 | 作者: admin ]
PHP要求同名表单元素用数组形式命名,并赋予value。否则他不能分解。
例:
<input type=checkbox name="chk[]" value=1>
<input type=checkbox name="chk[]" value=2>
<input type=checkbox name="chk[]" value=3>
获取数组并转成字符串形式打印结果
提交后,用$_POST[’chk’]访问。数组中的元素为选中的复选框的值
...
阅读全文…
例:
<input type=checkbox name="chk[]" value=1>
<input type=checkbox name="chk[]" value=2>
<input type=checkbox name="chk[]" value=3>
获取数组并转成字符串形式
引用
<?php
$array = array('lastname', 'email', 'phone');
$comma_separated = implode(",", $array);
echo $comma_separated; //lastname,email,phone
?>
$array = array('lastname', 'email', 'phone');
$comma_separated = implode(",", $array);
echo $comma_separated; //lastname,email,phone
?>
提交后,用$_POST[’chk’]访问。数组中的元素为选中的复选框的值
...
阅读全文…