Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/01/2013, 14:44
yolanda16568
 
Fecha de Ingreso: agosto-2011
Mensajes: 165
Antigüedad: 12 años, 8 meses
Puntos: 1
Correo maxivo

Me da este error algien sabe algo....

Error:

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/parla/public_html/libre/correomasivo.php on line 11

codigo:

Código PHP:
<?php require_once('Connections/libre.php'); ?>
<title>Correo maxivo</title>
<?php
mysql_connect
("localhost","parla_libre","mario16568") or die("Mala conexion"mysql_error ());
mysql_select_db("parla_libre") or die ("No se conecto".mysql_error ());
echo 
'Hola soy Fernando Galindo Gerente de Parla Computer y Administrador de esta Web';
$cab "MIME-Version: 1.0\r\n";
$cab.="Content-type: text/html\r\n";
$cab.='FROM: [email protected]';
$re=mysql_query("Select * from usuarios");
while (
$f=mysql_fetch_array($re)){
$para=$f['email'];
$nombre=$f['nombre'];
$msj=''.$nombre.' Este Correo es para recordarle que tenemos unas buenas novedades sobre Ordenadores y consumibles
le recomendamos pase por nuestra web o llame al 653259969.
<img src="http://www.parlacomputer.es/libre/imagen/logo.gif" width="138" height="114" />'
;
mail($para,"Parla Computer S.L Telefono 653259969",$msj,$cab);
echo 
$para.'<br><br><br>';
echo 
$msj.'<br><br>';
}
?>