Difference between revisions of "Php"

From Linuxintro
imported>ThorstenStaerk
(New page: PHP is a programming language specialized on homepages. It is configured in the file /etc/php5/apache2/php.ini for your apache web server. You can for example set default_charset from ...)
 
imported>ThorstenStaerk
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
PHP is a programming language specialized on homepages. It is configured in the file /etc/php5/apache2/php.ini for your [[apache]] web server. You can for example set
 
PHP is a programming language specialized on homepages. It is configured in the file /etc/php5/apache2/php.ini for your [[apache]] web server. You can for example set
 
default_charset from UTF8 to 8859-1.
 
default_charset from UTF8 to 8859-1.
 +
 +
= See also =
 +
* [[pear]] - install environment for php modules
 +
* [http://en.wikibooks.org/wiki/PHP_Programming Learning PHP]

Latest revision as of 18:38, 22 July 2011

PHP is a programming language specialized on homepages. It is configured in the file /etc/php5/apache2/php.ini for your apache web server. You can for example set default_charset from UTF8 to 8859-1.

See also