Beach

Bathing Water Quality Results

Click on any of the beaches below to view the latest bathing water results.


    [insert_php]

    $username = “user”;
    $password = “password”;
    $hostname = “tokra.sapphire.gi”;
    $dbh = mysql_connect($hostname, $username, $password) or die(“Unable to connect to MySQL”);
    $selected = mysql_select_db(“dbenvironment”,$dbh) or die(“Could not select first_test”);

    $result = mysql_query(“SELECT * FROM tblBeach ORDER BY `BeachID`”);
    while ($row = mysql_fetch_array($result,MYSQL_ASSOC))
    {
    echo “

  • “;
    echo ““.$row{‘Beach’}.”“;
    echo “
  • “;
    }
    [/insert_php]