PHP 1
PHP 1
PHP 1
<html>
<head></head>
<body>
<?php
echo "Hola Mundo";
?>
</body>
</html>
<html>
<head></head>
</html>
• Comentarios con //
<head>
<title>Problema</title> echo "Variable entera:";
$dia = 24; //Se declara una variable de tipo integer. echo $sueldo;
$sueldo = 758.43; //Se declara una variable de tipo double. echo "<br>";
$nombre = "juan"; //Se declara una variable de tipo string. echo "Variable string:";
echo "<br>";
echo "Variable boolean:";
echo $exite;
?>
</body>
</html>
$dia=10;
$fecha="Hoy es $dia";
echo $fecha;
<?php <body>
$cadena1 = "diego"; <?php
$cadena2 = "juan"; $nota1 = 10;
$cadena3 = "ana";
$nota2 = 7;
$todo = $cadena1 . $cadena2 . $cadena3 .
"<br>"; $nota3 = 8;
echo $todo; echo "Juan aprobó la materia con las notas $nota1,
$nota2 y $nota3";
$edad1 = 24;
?>
echo $cadena1 . " tiene $edad1 de edad";
?> </body>
</body> </html>
</html>
Elemento Descripción
input type="text" Caja de texto
input type="password" Caja de texto donde se muestran asteriscos en lugar de los caracteres escritos
input type="checkbox" Cajas seleccionables que permite escoger múltiples opciones
input type="radio" Cajas seleccionables en grupos que sólo permiten escoger una opción
input type="submit" Botón para enviar el formulario
input type="file" Cajas de texto y botón que permite subir archivos
input type="hidden" Elemento escondido. Especialmente útil para tokens de seguridad
option Una opción posible dentro de un elemento element
select Lista de opciones de elementos option
textarea Texto multilínea
<h2>Formulario:</h2>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
Nombre:
<input type="text" name="nombre" maxlength="50"><br>
Contraseña:
<input type="password" name="password"><br>
Educacion:
<select name="educacion">
<option value="sin-estudios">Sin estudios</option>
<option value="educacion-obligatoria" selected="selected">Educación Obligatoria</option>
<option value="formacion-profesional">Formación profesional</option>
<option value="universidad">Universidad</option>
</select> <br> continua…
Dr. Leonardo Chancay García 19
Nacionalidad:
<input type="radio" name="nacionalidad" value="hispana">Hispana</input>
<input type="radio" name="nacionalidad" value="otra">Otra</input><br>
Idiomas:
<input type="checkbox" name="idiomas[]" value="español" checked="checked">Español</input>
<input type="checkbox" name="idiomas[]" value="inglés">Inglés</input>
<input type="checkbox" name="idiomas[]" value="francés">Francés</input>
<input type="checkbox" name="idiomas[]" value="aleman">Alemán</input><br>
Email:
<input type="text" name="email"><br>
Sitio Web:
<input type="text" name="sitioweb"><br>
// Botón de enviar
<input type="submit" name="submit" value="Enviar">
</form>
</body>
</html>
</head> <head>
<title>Captura de datos del form</title>
<body>
</head>
<form method="post" action="pagina2.php">
<body>
Ingrese su nombre:
<?php
<input type="text" name="nombre"> echo "El nombre ingresado es:";
<br> echo $_REQUEST['nombre'];
<input type="submit" value="confirmar"> ?>
</form> </body>
</html>
</body>
</html>
pagina2.php
pagina1.php
<html> <html>
<head> <head>
<title>Problema</title> <title>Problema</title>
</head> </head>
<body> <body>
<form method="post" action="pagina2.php"> <?php
Ingrese el nombre: echo $_REQUEST['nombre'];
<input type="text" name="nombre"> echo "<br>";
<br> if ($_REQUEST['edad'] >= 18) {
Ingrese la edad: echo "Es mayor de edad";
<input type="text" name="edad"> } else {
<br> echo "No es mayor de edad";
<input type="submit" value="confirmar"> }
</form> ?>
</body> </body>
</html> pagina1.php </html> pagina2.php
</body> </body>
pagina1.php </html> pagina2.php
</html>
</html>
pagina1.php </html> pagina2.php
<html> <html>
<head> <head>
<title>Problema</title> <title>Problema</title>
</head>
</head>
<body>
<body>
<form action="pagina2.php" method="post">
<?php
Ingrese nombre:<input type="text"
name="nombre"><br> echo "El nombre ingresado:" .
Ingrese su curriculum:<br> $_REQUEST['nombre'];
</body> </body>
</html> </html>
pagina1.php pagina2.php