コード例 #1
0
ファイル: index.php プロジェクト: gomezjsus/IAW
<?php

session_start();
include 'funciones.php';
if (isset($_POST['continuar'])) {
    if (!empty($_POST['nombre']) && soloLetras($_POST['nombre'])) {
        $_SESSION['datos'][] = $_POST['nombre'];
    } else {
        $error = 'Nombre vacio o con caractares que no son letras';
    }
}
?>
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <h1>INTRODUCCIÓN DE NOMBRE</h1>
        <form method="POST" action="" >
            Escriba algún nombre</br>
            <input type="text" name="nombre" /><?php 
echo isset($error) ? $error : '';
?>
            </br>
コード例 #2
0
ファイル: apellidos.php プロジェクト: gomezjsus/IAW
<?php

session_start();
include 'funciones.php';
if (isset($_POST['aceptar'])) {
    if (!empty($_POST['ape']) && soloLetras($_POST['ape'])) {
        $_SESSION['ape'] = $_POST['ape'];
        header("Location: confirmar.php");
    } else {
        $error = "Apellido vacío o no contiene solo letras";
    }
}
?>
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <h1>FORMULARIO</h1>
        <form method="POST" action="" >
            Escriba tu apellido</br>
            <input type="text" name="ape" /><?php 
echo isset($error) ? $error : '';
?>