vividtea

Processing POST method php

Sep 8th, 2025
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. <?php
  2.   //----- (1) LOGIC -----
  3.   $firstName = filter_input(INPUT_POST, 'firstName');
  4.   ?>
  5. <!-- (2) HTML template output -->
  6. <!doctype html>
  7. <html>
  8.    <head>
  9.       <title>process</title>
  10.    </head>
  11.    <body>
  12.       Hello <?= $firstName ?>
  13.    </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment