Category:PHP

From ReduxWiki

Jump to: navigation, search

Contents

[edit] What Is PHP

PHP Tutorial
  • 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:


Media in category "PHP"

There are 14 files in this category.

Personal tools
Getting Started