Category:PHP
From ReduxWiki
Contents |
[edit] What Is PHP
- PHP stands for PHP: Hypertext Preprocessor
- Server side scripting language
- Supports many databases (MySQL, Oracle, PostgreSQL, etc.)
- PHP is an open source software (OSS)
[edit] PHP + MySQL
- PHP combined with MySQL are cross-platform (means that you can develop in Windows and serve on a Unix platform)
[edit] phpinfo
- Outputs information on PHP run on the server.
<?php phpinfo();?>
[edit] Example
my_static_content.php
<?php $subject = "Output your text"; ?>
index.php
<head>
<?php include_once('my_static_content.php');?>
</head>
<body>
<? echo $subject;?>
</body>
[edit] Resources
Network Redux forums:
- Tutorials and Development
Subcategories
There are 19 subcategories to this category.
AFP |
P cont. |
P cont.RSW |
Articles in category "PHP"
There are 18 articles in this category.
H |
H cont.P |
SW |
Media in category "PHP"
There are 14 files in this category.




