xref: /web-php/copyright.php (revision d9bcfed4)
1<?php
2$_SERVER['BASE_PAGE'] = 'copyright.php';
3include_once __DIR__ . '/include/prepend.inc';
4$SIDEBAR_DATA = '
5<a id="license"></a>
6<h3>PHP License</h3>
7<p>
8 For information on the PHP License (i.e. using the PHP language),
9 <a href="/license/">see our licensing information page</a>.
10</p>
11';
12site_header("Copyright", ["current" => "footer"]);
13?>
14
15<a id="copyright"></a>
16<h1>Website Copyright</h1>
17
18<p>
19 The code, text, PHP logo, and graphical elements on this website
20 and the mirror websites (the "Site") are Copyright &copy; 2001-<?php echo date("Y") ?>
21 the <a href="/credits.php">PHP Group</a>. All rights reserved.
22</p>
23
24<p>
25 Except as otherwise indicated elsewhere on this Site, you are free
26 to view, download and print the documents and information available
27 on this Site subject to the following conditions:
28</p>
29
30<ul>
31 <li>
32  You may not remove any copyright or other proprietary notices
33  contained in the documents and information on this Site.
34 </li>
35 <li>
36  The rights granted to you constitute a license and not a transfer
37  of title.
38 </li>
39 <li>
40  The rights specified above to view, download and print the
41  documents and information available on this Site are not applicable
42  to the graphical elements, design or layout of this Site. These
43  elements of the Site are protected by trade dress and other laws
44  and may not be copied or imitated in whole or in part.
45 </li>
46</ul>
47
48<p>
49 For more information on the PHP Group and the PHP project, please see
50 <a href="http://php.net/">the PHP homepage</a>.
51</p>
52
53<h2>PHP Manual</h2>
54
55<p>
56 The PHP Manual is covered by a separate license, which is available
57 <a href="/manual/en/copyright.php">from within the manual itself</a>.
58</p>
59
60<?php site_footer();
61