Jump to content

PHP Emailing List Warning


tebrown

Recommended Posts

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

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'];
}

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.