PHP: Difference between revisions
From DWIKI
mNo edit summary |
mNo edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
= Links = | |||
*[http://www.php.net/ PHP Homepage] | |||
*[http://www.php.net/manual/en/ PHP Manual] | |||
*[http://smarty.php.net/ Smart, useful PHP template engine] | |||
*[http://www.onlamp.com/pub/a/php/2000/12/01/php_phanatics.html PHP and forms] | |||
*[http://www.tizag.com/phpT/examples/formex.php More PHP and forms] | |||
*[http://pear.php.net/ PHP Pear] | |||
*[http://www.phpdoc.org/ phpdocumentor] | |||
| |||
= Docs = | |||
*[http://nl3.php.net/manual/en/ini.sect.safe-mode.php open_basedir] | |||
== | == Internationalizing php scripts == | ||
[[Category: | =HOWTO= | ||
==Get phpinfo from command line== | |||
php -i | |||
= FAQ = | |||
==Apache graceful or restart== | |||
===Graceful is enough for=== | |||
(on mpm prefork) | |||
*max_input_vars | |||
== List modules == | |||
php -m | |||
| |||
==Which ini files is php cli using?== | |||
php --ini | |||
== See also == | |||
*[[CGI|CGI]] | |||
[[Category:Scripting]] | |||
[[Category:Programming]] |
Latest revision as of 13:41, 30 January 2024
Links
- PHP Homepage
- PHP Manual
- Smart, useful PHP template engine
- PHP and forms
- More PHP and forms
- PHP Pear
- phpdocumentor
Docs
Internationalizing php scripts
HOWTO
Get phpinfo from command line
php -i
FAQ
Apache graceful or restart
Graceful is enough for
(on mpm prefork)
- max_input_vars
List modules
php -m
Which ini files is php cli using?
php --ini