![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
02/12/2006, 16:08
|
| | Fecha de Ingreso: noviembre-2003
Mensajes: 499
Antigüedad: 21 años, 2 meses Puntos: 7 | |
if( !$Nombre_art )
die("ERROR, debe llenar los campos para buscar.");
$query = "SELECT * FROM
artistas
WHERE
Nombre_art='$Nombre_art';
$result = mysql_query($query,$db);
if( !$result )
{ die("Error executing query");
}
$nrows = mysql_num_rows($result);
$row = 0;
while( $row < $nrows )
{ |