forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
software.php
30 lines (26 loc) · 979 Bytes
/
software.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
$_SERVER['BASE_PAGE'] = 'software.php';
include_once __DIR__ . '/include/prepend.inc';
site_header("PHP Software", ["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") ?>
<a href="http://php.net/">php.net</a><br>
Main site for the PHP project.<br clear="left">
</p>
<p>
<?php echo make_image("pear-icon.png", $alt = "pear.php.net", "left") ?>
<a href="http://pear.php.net/">pear.php.net</a><br>
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") ?>
<a href="http://pecl.php.net/">pecl.php.net</a><br>
The PECL project where you can find PHP extensions.<br clear="left">
</p>
<?php site_footer();