1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/software.php
Sara Golemon 2735e5f03f Swap uses of _SERVER[DOCUMENT_ROOT] for __DIR__
1/n - Update / and /include/ only.
2019-05-31 11:19:09 -04:00

31 lines
984 B
PHP

<?php
$_SERVER['BASE_PAGE'] = 'software.php';
include_once __DIR__ . '/include/prepend.inc';
site_header("PHP Software", array("current" => "help"));
?>
<h1>PHP Software</h1>
<p>
This page contains a list of sites where you can find software distributed
under the <a href="/license/3_01.txt">PHP license</a>.
</p>
<p>
<?php echo make_image("logos/php-icon-white.gif", $alt = "php.net", "left") ?>&nbsp;
<a href="http://php.net/">php.net</a><br>
&nbsp;Main site for the PHP project.<br clear="left">
</p>
<p>
<?php echo make_image("pear-icon.png", $alt = "pear.php.net", "left") ?>&nbsp;
<a href="http://pear.php.net/">pear.php.net</a><br>
&nbsp;The PEAR project where you can find reusable components for PHP .<br clear="left">
</p>
<p>
<?php echo make_image("pecl-icon.png", $alt = "pecl.php.net", "left") ?>&nbsp;
<a href="http://pecl.php.net/">pecl.php.net</a><br>
&nbsp;The PECL project where you can find PHP extensions.<br clear="left">
</p>
<?php site_footer();