1<?php 2$_SERVER['BASE_PAGE'] = 'elephpant.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("ElePHPant", ["current" => "footer"]); 13?> 14 15<a id="copyright"></a> 16<h1>ElePHPant</h1> 17 18<p> 19 The ElePHPant is the adorable, elephantine mascot of the PHP project. 20 Occasionally, official stuffed toy elePHPants designed by 21 <a href="http://www.elroubio.net">Vincent Pontier</a> are made available. 22 You may have seen pictures of them (from 23 <a href="https://www.flickr.com/groups/elephpants/">Flickr</a>) at the bottom 24 of the php.net homepage. Beware of imitators. 25</p> 26 27<p> 28 <img src="images/logos/elephpant-running-78x48.gif" alt=""> 29</p> 30 31<p> 32 For more information on the PHP Group and the PHP project, please see 33 <a href="http://php.net/">the PHP homepage</a>. 34</p> 35 36<?php 37// Print the common footer. 38site_footer([ 39 'elephpants' => true, 40]); 41