Esta pantallita esta hecho en php.Ahi va el codigo fuebte 
 <!DOCTYPE html>
<html>
<head>
    <title>Registro Trabajadores</title>
    <center>
        <header>Estamos registrando a los trabajadores nuevos</header>
    <basefont>Ahora.........</basefont>
    </center>
   
</head>
<body>
<center>
    <h1>Regitro de Trabajadores</h1>
<form method="get">
    <mark>Es de vida o muerte</mark>

    <table>
    <!-- -->
        <thead>
          
        </thead>
        <tbody>
            <tr>
                <td><abbr>Nombre:</abbr></td>
                <td> <input type="text" name="nombre"> </td>
          
                <td><abbr>Apellido:</abbr></td>
                <td> <input type="text" name="apellido"></td>
            </tr>
            <tr>
                <td><abbr>FechaNac:</abbr></td>
                <td><input tyabbre="text" name="fechanac"> </td>
          
                <td><abbr>Celular:</abbr></td>
                <td> <input type="text" name="celular"></td>
            </tr>
            <tr>
                <td><abbr>Direccion:</abbr></td>
                <td><input type="text" name="direccion"> </td>

                <td><abbr>Cargo:</abbr></td>
                <td><input type="text" name="cargo"></td>
            </tr>
        </tbody>      
    </table>
    <p><input type="submit" name="" value="Registrar"> <input type="submit" name="" value="Calcelar"></p>
      
</form>
<p>Realize todos los trabajos como se lo ordena y no tendra problemas</p>

    <pre>
        Nombre=<?php  print_r($_GET['nombre']);?>
    </pre>
    <pre>
        Apellido=<?php  print_r($_GET['apellido']);?>
    </pre>
    <pre>
        Fechanac=<?php  print_r($_GET['fechanac']);?>
    </pre>
    <pre>
        Celular=<?php  print_r($_GET['celular']);?>
    </pre>
    <pre>
        Direccion=<?php  print_r($_GET['direccion']);?>
    </pre>
    <pre>
        Cargo=<?php  print_r($_GET['cargo']);?>
    </pre>
</center>
</body>
</html>

guardalo como: registroTrabajadores.php 

Comentarios