Hola buenas, tengo un archivo de insertar registros y bueno, he terminado en cuestion con el archivo pero no me funciona, el WAMP me salta un error en la linea 22 del tipo T_STRING y por mas que lo miro no localizo el error.
Me preguntaba si me podriais echar una manita ya que llevo toda la tarde con este archivo....
Saludos y muchas gracias.
Codigo:
<html>
<head>
<title>Insertar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$computadora="localhost";
$usuario="root";
$basedatos="segundamano";
$provincia=$_GET['idpiso'];
$habitacion=$_GET['habitaciones'];
$aseo=$_GET['aseos'];
$amuebla=$_GET['amueblado'];
$fechaconstrucciones=$_GET['fechaconstruccion'];
$metroscuadrados=$_GET['metros'];
$pvp=$_GET['precioventa'];
$enlace= mysql_connect ($computadora, $usuario);
mysql_select_db ($basedatos, $enlace);
$seleccion="INSERT INTO viviendas VALUES ('$provincia', '$habitacion', '$aseo', '$amuebla', '$fechaconstrucciones', '$metroscuadrados', $pvp)";
result= mysql_query ($seleccion, $enlace);
if (!result)
{
echo ("<br>DATOS NO INTRODUCIDOS<br>");
echo ("a href=index.html>Menu Principal</a>");
}
else
{
echo ("<br>DATOS INTRODUCIDOS CORRECTAMENTE<br>");
echo ("a href=index.html>Menu Principal</a>");
}
$seleccion2="SELECT * FROM viviendas";
$result1= mysql_query ($seleccion2, $enlace);
?>
<table align="center" width="450" border="1">
<tr>
<td align="center"><b>Provincia</b></td>
<td align="center"><b>Habitaciones</b></td>
<td align="center"><b>Aseos</b></td>
<td align="center"><b>Amueblados</b></td>
<td align="center"><b>Fecha Construccion</b></td>
<td align="center"><b>Metros 2</b></td>
<td align="center"><b>Precio Venta</b></td>
</tr>
<?php
while ($fila= mysql_fetch_array ($result1))
{
?>
<tr>
<td><?php echo $fila['idpiso']?></td>
<td><?php echo $fila['habitaciones']?></td>
<td><?php echo $fila['aseos']?></td>
<td><?php echo $fila['amueblado']?></td>
<td><?php echo $fila['fechaconstruccion']?></td>
<td><?php echo $fila['metros']?></td>
<td><?php echo $fila['precioventa']?></td>
</tr>
<?php
}
?>
</table>
<?php
mysql_close ($enlace);
?>
</body>
</html>
Me preguntaba si me podriais echar una manita ya que llevo toda la tarde con este archivo....
Saludos y muchas gracias.
Codigo:
<html>
<head>
<title>Insertar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
$computadora="localhost";
$usuario="root";
$basedatos="segundamano";
$provincia=$_GET['idpiso'];
$habitacion=$_GET['habitaciones'];
$aseo=$_GET['aseos'];
$amuebla=$_GET['amueblado'];
$fechaconstrucciones=$_GET['fechaconstruccion'];
$metroscuadrados=$_GET['metros'];
$pvp=$_GET['precioventa'];
$enlace= mysql_connect ($computadora, $usuario);
mysql_select_db ($basedatos, $enlace);
$seleccion="INSERT INTO viviendas VALUES ('$provincia', '$habitacion', '$aseo', '$amuebla', '$fechaconstrucciones', '$metroscuadrados', $pvp)";
result= mysql_query ($seleccion, $enlace);
if (!result)
{
echo ("<br>DATOS NO INTRODUCIDOS<br>");
echo ("a href=index.html>Menu Principal</a>");
}
else
{
echo ("<br>DATOS INTRODUCIDOS CORRECTAMENTE<br>");
echo ("a href=index.html>Menu Principal</a>");
}
$seleccion2="SELECT * FROM viviendas";
$result1= mysql_query ($seleccion2, $enlace);
?>
<table align="center" width="450" border="1">
<tr>
<td align="center"><b>Provincia</b></td>
<td align="center"><b>Habitaciones</b></td>
<td align="center"><b>Aseos</b></td>
<td align="center"><b>Amueblados</b></td>
<td align="center"><b>Fecha Construccion</b></td>
<td align="center"><b>Metros 2</b></td>
<td align="center"><b>Precio Venta</b></td>
</tr>
<?php
while ($fila= mysql_fetch_array ($result1))
{
?>
<tr>
<td><?php echo $fila['idpiso']?></td>
<td><?php echo $fila['habitaciones']?></td>
<td><?php echo $fila['aseos']?></td>
<td><?php echo $fila['amueblado']?></td>
<td><?php echo $fila['fechaconstruccion']?></td>
<td><?php echo $fila['metros']?></td>
<td><?php echo $fila['precioventa']?></td>
</tr>
<?php
}
?>
</table>
<?php
mysql_close ($enlace);
?>
</body>
</html>