tebrown Posted September 7, 2012 Share Posted September 7, 2012 Was just following a tutorial on youtube for creating a mailing list. Ideally i want to send an email to everyone in my team using a form. I copied the php code exactly, but im getting the error of: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in... <? $get = mysql_query("SELECT * FROM email WHERE club = 'Inglewood' team = 'Senior As'"); while ($getrow = mysql_fetch_assoc($get)) { echo $getrow['email']; } ?> Any help much appreciated. Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/ Share on other sites More sharing options...
Pikachu2000 Posted September 7, 2012 Share Posted September 7, 2012 Missing an AND between the two WHERE comparisons. Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375908 Share on other sites More sharing options...
tebrown Posted September 7, 2012 Author Share Posted September 7, 2012 Thanks, although im still getting the error after i changed that: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in <? $subject = mysql_real_escape_string($_REQUEST['subject']); $message = mysql_real_escape_string($_REQUEST['message']); $get = mysql_query("SELECT * FROM email WHERE club = 'Inglewood' AND team = 'Senior As'"); while ($getrow = mysql_fetch_assoc($get)) { echo $getrow['email']; } ?> Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375910 Share on other sites More sharing options...
Pikachu2000 Posted September 7, 2012 Share Posted September 7, 2012 The query is failing and returning the boolean value FALSE. Echo mysql_error to see what error the db is returning. Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375911 Share on other sites More sharing options...
tebrown Posted September 7, 2012 Author Share Posted September 7, 2012 Thanks, solved the problem. Much appreciated. Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375938 Share on other sites More sharing options...
darkfreaks Posted September 7, 2012 Share Posted September 7, 2012 don't forget to mark topic solved Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375950 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.