CVS: phpweather index.php,1.32,1.33
Brought to you by:
iridium
From: Martin G. <gim...@us...> - 2002-08-26 14:57:03
|
Update of /cvsroot/phpweather/phpweather In directory usw-pr-cvs1:/tmp/cvs-serv14990 Modified Files: index.php Log Message: Links to documentation. Index: index.php =================================================================== RCS file: /cvsroot/phpweather/phpweather/index.php,v retrieving revision 1.32 retrieving revision 1.33 diff -u -3 -r1.32 -r1.33 --- index.php 29 May 2002 20:11:09 -0000 1.32 +++ index.php 26 Aug 2002 14:56:58 -0000 1.33 @@ -105,8 +105,18 @@ $end_time = explode(' ', microtime()); $diff = ($end_time[0] + $end_time[1]) - ($start_time[0] + $start_time[1]); -echo '<p>Total time used to generate page: ' . number_format($diff * 1000, 0) . " ms.</p>\n"; ?> + +<p>PHP Weather comes with some documentation that you'll probably want +to see. Choose the format: +[<a href="doc/phpweather.html">html</a>] +[<a href="doc/phpweather.pdf">pdf</a>] +[<a href="doc/phpweather.ps">ps</a>] +[<a href="doc/phpweather.txt">txt</a>].</p> + +<p>Total time used to generate page: +<?php echo number_format($diff * 1000, 0) ?> ms.</p> + </body> </html> |