Jun 05 2009
Fatal error: Class ‘JFactory’ not found
Hello,
I am trying to insert a data in the table for a logged in user.
I am using the follwing code
$db=& JFactory :: getDBO();
$query = “INSERT INTO jos_energy (date, paygasmonth, payelectmonth,paywatermonth,payothermonth)VALUES (’2009-06-09′, 1, 1, 1, 1)”;
$db->setQuery($query);
$db->query() or die(’Error saving data’);
But i am getting the following error
Fatal error: Class ‘JFactory’ not found
Please help in solving this problem.
Thanks in advance