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. Quote 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. Quote 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']; } ?> Quote 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. Quote 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. Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/268098-php-emailing-list-warning/#findComment-1375950 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.