| 12345678910111213141516171819202122232425 |
- <?php
- // Pages created in subdirs need ../ appended.
- $url_prefix = getenv("URLPREFIX");
- ?>
- <table align="center" width="100%" cellpadding="4" cellspacing="1" border="0" bgcolor="lightblue">
- <tr align="left" bgcolor="CCFFCC" >
- <td align="center">
- <a href="<?=$url_prefix?>upload.html">Upload Code</a>
- </td>
- <td align="center">
- <a href="<?=$url_prefix?>list.html">Download Code</a>
- </td>
- <td align="center">
- <a href="<?=$url_prefix?>index.html">About</a>
- </td>
- <td align="center">
- <form method="get" action="http://www.google.com/search">
- <input type="text" name="q" size="25"
- maxlength="255" value="" />
- <input type="hidden" name="sitesearch" value="ccan.ozlabs.org"/>
- <input type="submit" value="Search CCAN (Google)" />
- </form>
- </td>
- </table>
- <hr>
|