Advertisement
teslariu

formphp

Mar 18th, 2022
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <?php
  2.  
  3. $apellido = $_POST['apellido'];
  4. $nombre = $_POST['nombre'];
  5. $fecha_nacimiento = $_POST['fecha_nacimiento'];
  6. $sugerencias = $_POST['sugerencias'];
  7. $direccion_email = $_POST['direccion_email'];
  8. $cars = $_POST['cars'];
  9. $web_personal = $_POST['web_personal'];
  10. $telefono = $_POST['telefono'];
  11. $localidad = $_POST['localidad'];
  12. $color = $_POST['color'];
  13. $experiencia = $_POST['experiencia'];
  14. $usuario = $_POST['usuario'];
  15. $password = $_POST['password'];
  16. $imagen_perfil = $_POST['imagen_perfil'];
  17. $publicidad = $_POST['publicidad'];
  18. $aceptacion = $_POST['aceptacion'];
  19. echo "Gracias ".$apellido.",".$nombre."<br>";
  20. echo "Tu usuario es ".$usuario." y tu password es ".$password."<br>";
  21. echo "Todos tus datos han sido guardados.";
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement