1<?php 2$_SERVER['BASE_PAGE'] = 'software.php'; 3include_once __DIR__ . '/include/prepend.inc'; 4site_header("PHP Software", ["current" => "help"]); 5?> 6 7<h1>PHP Software</h1> 8 9<p> 10 This page contains a list of sites where you can find software distributed 11 under the <a href="/license/3_01.txt">PHP license</a>. 12</p> 13 14<p> 15 <?php echo make_image("logos/php-icon-white.gif", $alt = "php.net", "left") ?> 16 <a href="http://php.net/">php.net</a><br> 17 Main site for the PHP project.<br clear="left"> 18</p> 19<p> 20 <?php echo make_image("pear-icon.png", $alt = "pear.php.net", "left") ?> 21 <a href="http://pear.php.net/">pear.php.net</a><br> 22 The PEAR project where you can find reusable components for PHP .<br clear="left"> 23</p> 24<p> 25 <?php echo make_image("pecl-icon.png", $alt = "pecl.php.net", "left") ?> 26 <a href="http://pecl.php.net/">pecl.php.net</a><br> 27 The PECL project where you can find PHP extensions.<br clear="left"> 28</p> 29 30<?php site_footer(); 31