View the Most Wanted LQ Wiki articles.
LinuxQuestions.org > Linux Wiki > PHP

From LQWiki

Jump to: navigation, search

PHP Hypertext Preprocessor is a tool for making dynamic websites with embedded code in HTML-pages. It is widely used and has many useful features like good database connectivity. The PHP tips section has useful information for php coders.

Simple PHP code embedded in HTML.

<html>
<body>

<?php

echo "Hello World!";

?>
</body>
</html>

Critics of PHP often point out its lack of namespaces, lack of references and no effective mean of creating complex data structures and lack of a standardized database interface.

See also

External links

  • PHP official website (www.php.net)
  • Wikipedia's PHP page (en.wikipedia.org)
  • Experiences of using PHP in large websites (www.ukuug.org)
  • PHPBuilder.com (www.phpbuilder.com)
    Some of the content is a bit dated as the site is more than 5 years old. There is a lot of solid code here though.
  • DevShed's PHP Section (www.devshed.com)
    This site has a little bit of everything. They have a full section devoted PHP, along with MySQL, Perl, and Python to name a few.
  • Zend (www.zend.com)
    The commercial entity behind PHP. They have a lot of community-based info, although it has never really taken off (imo) as the place for PHP.

Personal tools