Thanks, Weedpacket.. I have weeded out the issue with the log in Thanks for the help. it was the way the $db was written in the script. I have 1 more question if you have some time to help me.
The issue is on the home page where "Most Recent Activity" is to be displayed it shows nothing below it. http://wxfriends.com/crime/
This comes from the report.php
<?php
/*
* report.php
*
* Display reports of data.
*
* LICENSE:
*
* Copyright 2005 Matt Kubilus
*
* This file is part of crimemap.
*
* Crimemap is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Crimemap is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Crimemap; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
$db = new dbConnection(); [COLOR="Red"]Line 31[/COLOR]
$db->connect($host,$dbuser,$dbpwd,$dbname);
$act = New activity($db);
if(isset($_GET['mode']))
{
$mode=$_GET['mode'];
}
if($mode = 'all')
{
$act->showAllActivity();
}
$db->disconnect();
?>
When accessing just the report.php it returns the error
Fatal error: Class 'dbConnection' not found in /home/wx/public_html/crime/report.php on line 31
Line 31 of report.php is $db = new dbConnection();
The Most Recent Activity should show the recent activity as lines of text.
I have attached a pic