Mitchell Ransom Posted June 15, 2012 Share Posted June 15, 2012 Hi Guys, First post here. I'm not quite a beginner with PHP but I still have a hell of a lot to learn. I'm receiving the following error with one of my scripts: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/neonflam/public_html/subdomains/moleseyhire.com/php/manageAdverts.php on line 34 Here below are the related code snippets; manageAdverts.php <?php require_once"include/init.php"; include_once( "dbController.php" ); dbController::init(); $adverts = dbController::getAllAdverts(); $_SESSION['redirectedpage'] = "manageAdverts.php"; ?> <?php while($row = mysql_fetch_array($adverts)) { ?> dbController.php function getAllAdverts(){ $query = "SELECT * FROM local_adverts"; return self::execQuery($query); } If anyone can point me in the right direction that would be great! Kind regards, Mitchell Ransom Quote Link to comment https://forums.phpfreaks.com/topic/264235-custom-cms-with-sql-and-php-error/ Share on other sites More sharing options...
PeoMachine Posted June 17, 2012 Share Posted June 17, 2012 Give us the "execQuery" method. Maybe youre not returning the MySQL resource. Quote Link to comment https://forums.phpfreaks.com/topic/264235-custom-cms-with-sql-and-php-error/#findComment-1354641 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.