Update of /cvsroot/phpweather/phpweather
In directory usw-pr-cvs1:/tmp/cvs-serv1925
Modified Files:
index.php
Log Message:
Added inline style to body element, added information about our homepage and NOAA, changed error_reporting to E_ERROR - it throws up a lot of junk that will only be interesting to developers
Index: index.php
===================================================================
RCS file: /cvsroot/phpweather/phpweather/index.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- index.php 18 Mar 2002 18:10:15 -0000 1.19
+++ index.php 26 Mar 2002 16:26:38 -0000 1.20
@@ -2,12 +2,14 @@
<head>
<title>PHP Weather - test</title>
</head>
-<body>
+<body style="font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px;">
<h1>PHP Weather - test</h1>
-
+<p>This is the default test page for PHP Weather. For more information, please visit
+<a href="http://www.phpweather.net">http://www.phpweather.net</a>.</p>
+<p>Data is taken from the <a href="http://weather.noaa.gov">National Weather Service</a> at NOAA.</p>
<?php
-error_reporting(E_ALL);
+error_reporting(E_ERROR);
/* Checkpoint, we store the time */
$time[] = array(microtime(), 'start');
|