Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/03/2009, 09:54
trebolx
 
Fecha de Ingreso: marzo-2009
Mensajes: 3
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: Problemita

<html>
<head>
<title>Bases de Datos</title>
</head>
<body>
<font face="Verdana, Arial, Helvetica, sans-serif" size="-4">
<? // Primera Página para Listar Coches


// 1º CONECTAR CON EL SERVIDOR DE BASE DE DATOS
$conexion=mysql_connect('localhost','root','');
// 2º SELECCIONAR LA BASE DE DATOS
mysql_select_db ('coches',$conexion);

// 3º CREO LA CONSULTA

$consulta ="SELECT coches.IdCoche,coches.IdCliente,coches.Marca,coche s.Modelo,coches.Motor,coches.Matricula ";
$consulta.=" CodPostal, Provincia, Localidad, clientes.Nombre, clientes.Apellidos ";
$consulta.=" FROM coches,clientes ";
$consulta.="WHERE coches.IdCliente=clientes.IdCliente ";

// ESTO LUEGO SE BORRA
//echo $consulta;

// 4º EJECUTO LA CONSULTA Y SE GUARDA EN $resultado
$resultado=mysql_query($consulta,$conexion);
echo '<a href="InsertarCoches1.php">INSERTAR</a>';

echo '<font face="Verdana, Arial, Helvetica, sans-serif" size="-4">';
echo '<table border=0>';
echo '<tr>';
echo '<td>IdCoche</td><td>IdCliente</td><td>Marca</td><td>Modelo</td><td>Motor</td>';
echo '<td>Matricula</td>';

// 5º FILA A FILA IMPRIMO EL RESULTADO DE LA CONSULTA
while ($fila=mysql_fetch_row($resultado))
{ echo '<tr>';
foreach ($fila as $campo)
{echo '<td> '.$campo.' </td>';}
echo '<td> <a href="ModificarCoches1.php?IdCoche='.$fila[0].'">MODIF</a></td>';
echo '<td> <a href="BorrarCoches.php?IdCoche='.$fila[0].'">BORRAR</a></td>';
echo '</tr>';
}
echo '</table>';

echo '<a href="InsertarCoches1.php">INSERTAR</a>';


// 6º CIERRO A CONEXION A LA BASE DE DATOS
mysql_close($conexion);

?>
</font>
</body>
</html>

Esta es la pagina donde me da el fallo, y el error es este:

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\pruebas\coches\ListadoCoches.php on line 37