Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/09/2008, 04:56
tirengarfio
 
Fecha de Ingreso: septiembre-2008
Mensajes: 146
Antigüedad: 16 años, 2 meses
Puntos: 1
Respuesta: Duda con pequeño formulario. Novato

Saludos de nuevo,

gracias por tu respuesta, estoy haciendo la pagina con Dreamweaver.

Ademas de la linea que me comentas que es innecesaria he quitado parte de la linea 19.

Ya no da error, pero no aparece nada en resultados.php al intentar buscar algo...


Código PHP:
<?php require_once('Connections/Prueba.php'); ?>
<?php
mysql_select_db
($database_Prueba$Prueba);
$query_Prueba "SELECT * FROM table1 WHERE table1.Cancion='Un dia en el mundo'";
$Prueba mysql_query($query_Prueba$Prueba) or die(mysql_error());
$row_Prueba mysql_fetch_assoc($Prueba);
$totalRows_Prueba mysql_num_rows($Prueba);

$varAutor_Prueba2 "%";
if (isset(
$GET_['autor'])) {
  
$varAutor_Prueba2 = (get_magic_quotes_gpc()) ? $GET_['autor'] : addslashes($GET_['autor']);
}
$varCancion_Prueba2 "%";
if (isset(
$GET_['cancion'])) {
  
$varCancion_Prueba2 = (get_magic_quotes_gpc()) ? $GET_['cancion'] : addslashes($GET_['cancion']);
}

$query_Prueba2 sprintf("SELECT * FROM table1 WHERE table1.Autor LIKE '%s' AND table1.Cancion LIKE '%s'"$varAutor_Prueba2,$varCancion_Prueba2);
$Prueba2 = die(mysql_error());
$row_Prueba2 mysql_fetch_assoc($Prueba2);
$totalRows_Prueba2 mysql_num_rows($Prueba2);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table width="200" border="1">
  <tr>
    <td>Autor</td>
    <td><?php echo $row_Prueba2['Autor']; ?></td>
  </tr>
  <tr>
    <td>Cancion</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>
<?php
mysql_free_result
($Prueba);

mysql_free_result($Prueba2);
?>

Última edición por jam1138; 17/09/2008 a las 09:50 Razón: Coloreo código