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í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> </td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($Prueba);
mysql_free_result($Prueba2);
?>