Ver Mensaje Individual
  #18 (permalink)  
Antiguo 04/07/2003, 11:53
Avatar de amanda75
amanda75
 
Fecha de Ingreso: junio-2003
Ubicación: cerca, pero no mucho
Mensajes: 684
Antigüedad: 21 años, 7 meses
Puntos: 0
conexio.php
Código PHP:
<?php

$conexio 
mysql_connect("44.44.44.44","bb","***"); 
  
mysql_select_db ("alumnos"$conexio) OR die 
(
"No es posible conectarte a la BD");

?>
insertar.php

Código PHP:

<HTML>
<HEAD>
<TITLE>Insertar.php</TITLE>
</HEAD>
<BODY>
<?
//Conexion con la base

include("conexio.php");  


$nombre$_POST['nombre'];
$apellido$_POST['apellido'];
$direccion$_POST['direccion']; 
$idClientes$_POST['idClientes'];
$CP$_POST['CP'];
$ciudad$_POST['ciudad']; 
$provincia$_POST['provincia']; 
$numTelef1$_POST['numTelef1']; 
$numTelef2$_POST['numTelef2'];
$fax$_POST['fax']; 
$web$_POST['web']; 
$email$_POST['email'];
$idActividad$_POST['idActividad']; 
$idCategoria$_POST['idCategoria'];
$movil$_POST['movil']; 
$idCentro$_POST['idCentro'];
$idClase$_POST['idClase'];
$idTipo$_POST['idTipo'];

$sql mysql_query("INSERT INTO alumnos (nombre,direccion,apellido,CP,IdClientes,ciudad,provincia,

numTelef1,numTelef2,fax,web,email,idActividad,idCategoria,movil,
idCentro,idClase,idTipo) 
VALUES ('$nombre','$direccion','$apellido','$CP',
 '$idClientes','$ciudad','$provincia','$numTelef1','$numTelef2',

'$fax','$web','$email','$idActividad','$idCategoria','$movil',
'$idCentro','$idClase','$idTipo')"
);

echo 
"Datos insertados <br>nombre: $nombre
<br>direccion: $direccion<br>apellido: $apellido<br>CP: $CP<br>ciudad: $ciudad<br>provincia: $provincia<br>
numTelef1: $numTelef1<br>numTelef2: $numTelef2<br>

fax: $fax<br>web: $web<br>email: $email
<br>idActividad: $idActividad<br>idCategoria: $idCategoria<br>movil: $movil<br>idTipo: $idTipo
<br>idCentro: $idCentro<br>idClase: $idClase"
;

?>

<h1><div align="center">Registro Insertado</div></h1>

<div align="center"><a href="lectura.php">
Visualizar el contenido de la base</a></div>
</BODY>
</HTML>
lectura.php
Código PHP:
<HTML>
<HEAD>
<TITLE>lectura.php</TITLE>
</HEAD>
<BODY>
<h1><div align="center">Lectura de la tabla</div></h1>
<br>
<br>
<?


include("conexio.php");


$sql=mysql_query("SELECT * FROM alumnos");

?>
<table align="center">
<tr>
<th>CP</th> 
<th>nombre</th> 
<th>apellido</th> 
<th>direccion</th> 
<th>idClientes</th> 
<th>idClase</th> 
<th>ciudad</th> 
<th>provincia</th> 
<th>numTelef1</th> 
<th>numTelef2</th> 
<th>fax</th> 
<th>web</th> 
<th>email</th> 
<th>idCategoria</th> 
<th>idActividad</th> 
<th>movil</th>
<th>idTipo</th> 
<th>idCentro</th> 

</tr>

<?

//Mostramos los registros

while($row=mysql_fetch_array($sql)){


echo 
"<tr><td>".$row[CP]."</td>"
echo 
"<td>".$row[nombre]."</td>"
echo 
"<td>".$row[apellido]."</td>"
echo 
"<td>".$row[direccion]."</td>"
echo 
"<td>".$row[idClientes]."</td>"
echo 
"<td>".$row[idClase]."</td>"
echo 
"<td>".$row[numTelef1]."</td>"
echo 
"<td>".$row[numTelef2]."</td>"
echo 
"<td>".$row[fax]."</td>"
echo 
"<td>".$row[web]."</td>"
echo 
"<td>".$row[email]."</td>"
echo 
"<td>".$row[ciudad]."</td>"
echo 
"<td>".$row[provincia]."</td>"
echo 
"<td>".$row[movil]."</td>";
echo 
"<td>".$row[idCategoria]."</td>"
echo 
"<td>".$row[idTipo]."</td>" 
echo "<td>".$row[idCentro]."</td>" 
echo "<td>".$row[idActividad]."</td></tr>";

}
mysql_free_result($sql);


?>

</table>

<div align="center">
<a href="insertar.html">Añadir un nuevo registro</a>
<br>
<a href="actuali1.php">Actualizar un registro existente</a>
<br>
<a href="bor1.php">Borrar un registro</a><br>
</div>

</BODY>
</HTML>

Última edición por amanda75; 05/07/2003 a las 10:36