–––––––––––––––––––––––––––––––––––––––––––––––––– --> <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> <!-- CSS –––––––––––––––––––––––––––––––––––––––––––––––––– --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/skeleton.css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> </head> <body> <?php $nombreCantante = urldecode($_GET["idCantante"]); $enlace = conectar($server, $user, $password); seleccionBBDD($baseDatos, $enlace); $query = "SELECT * FROM cantante WHERE nombre_cantante = '{$nombreCantante}'"; $registros = ejecutaQuery($query, $enlace); $datosCantante = mysql_fetch_array($registros, MYSQL_BOTH); ?> <form action="modificaRegistros.php" method="post" name="formulario"> <label for="nombre_cantante">Nombre del cantante</label> <input type="text" id="nombre_cantante" name="nombre_cantante" size="15" maxlength="40" value="<?php echo $datosCantante['nombre_cantante']; ?> "/> <input type="hidden" name="nombreActual" value="<?php echo $datosCantante['nombre_cantante']; ?>
<?php include_once "datos.php"; include_once "funcionesBBDD.php"; $enlaceServidor = conectar($server, $user, $password); seleccionBBDD($baseDatos, $enlaceServidor); $query = "SELECT hotel.*,categoria.* FROM hotel, categoria WHERE hotel.id_categoria = categoria.id_categoria"; $todosRegistros = ejecutaQuery($query, $enlaceServidor); while ($fila = mysql_fetch_array($todosRegistros, MYSQL_BOTH)) { echo "los datos del registro encontrado son:<br />"; echo $fila["nombre"] . "<br />"; echo $fila["direccion"] . "<br />"; echo $fila["telefono"] . "<br />"; echo $fila["anio_construccion"] . "<br />"; //En este conjunto de registros tengo también el id de categoría del hotel, vamos a sacar //la categoria correspondiente en funcion del hotel echo $fila["iva"] . "<br />"; echo $fila["descripcion"] . "<br />"; echo $fila["categoria"] . "<br />"; } cierraConexion($enlaceServidor);