1.
A
2. <?php
3.
4. //ENTRADA
5.
6. $numero=2;
7. $n1=3;
8. $n2=2;
9.
10. //PROCESO
11.
12. if
($numero=="Par")
{
13.
14.
$numero=$n2*2;
15.
16. }
17.
18.
19.
20. elseif
($numero=="Impar")
{
21.
22.
$numero=$n1*3;
23.
24. }
25.
26. ?>
27.
3.
<html>
<head>
<title>Formulario de Contacto</title>
</head>
<body>
<form action="txtagregar.php" method="POST">
<table border="1">
<tr>
<td colspan="2"><h2>Formulario de
Contacto</h2></td>
</tr>
<tr><td><label
for="">Nombre:</label></td>
<td><input type="text"
name="txtnom"></td>
</tr>
<tr><td><label
for="">Email:</label></td>
<td><input type="text"
name="txtema"></td>
</tr>
<tr><td><label
for="">Telefono:</label></td>
<td><input type="text"
name="txtel"></td>
</tr>
<tr><td><label for="">Sitio Web:</label></td>
<td><input type="text"
name="txtsit"></td>
</tr>
<tr><td><label
for="">Asunto:</label></td>
<td><input type="text"
name="txtasu"></td>
</tr>
<tr><td><label
for="">Mensaje:</label></td>
<td><input type="text"
name="txtmen"></td>
</tr>
<tr><td colspan="2"><input type="submit"
value="Enviar"</td></tr>
</table>
</form>
</body>
</html>
<?php
include("conexion.php");
$txtnom=$_POST["txtnom"];
$txtema=$_POST["txtema"];
$txtel=$_POST["txtel"];
$sitioweb=$_POST["txtsit"];
$txtasu=$_POST["txtasu"];
$txtmen=$_POST["txtmen"];
mysqli_query($conexion,"INSERT INTO
contacto(Id,nombre,email,telefono,sitioweb,asunto,mensaje)VALUES(NULL,'$txtnom','$txtema','$txtel','$sitioweb','$txtasu','$txtmen')");
4. C
5.
<?php
include('conexion.php');
$id=$_GET['id'];
mysqli_query($conexion,
"DELETE
FROM contacto where
id='$id'");
include('listado.php');
?>
6.
insert into turista_freddieromero values ('10001','Ricardo','Romero León','Pasaje
Santa Rosa 123','998076534');
insert into turista_freddieromero values ('10002','Freddie
Armando','Romero Paredes','Pasaje Daniel Carrión 130 Dpto
302','955565857');
insert into turista_freddieromero values ('10003','Freddie
Antonio','Romero León','Calle Virrey Manuel Guirior 645
- 649','996639172');
insert into turista_freddieromero values ('10004','Angela','Leon Acha
de Romero','Calle Rey Basadre 200','996163816');
insert into turista_freddieromero values ('10005','Angela
Cecilia','Romero León','Calle Barcelona 400','999777555');
insert into hotel_freddieromero values ('10001','Hotel
Hilton','Calle Geranios 123','Miraflores','2','922222222');
insert into hotel_freddieromero values ('10002','Hotel
Sheraton','Calle Palmeras 302','Cercado de Lima','4','933333333');
insert into hotel_freddieromero values ('10003','Hotel Casa
Andina','Calle Castaños 649','Miraflores','6','944444444');
insert into hotel_freddieromero values ('10004','Hotel
Marriot','Calle Magnolias 200','Miraflores','8','955555555');
insert into hotel_freddieromero values ('10005','Hotel Las
Americas''Calle Cedros 400','Miraflores','10','966666666');
No hay comentarios:
Publicar un comentario