PHP Form to redirect with form results -


i have form when submit it, stores info in database. need able form data come on redirect page.

it not need fetch database love php style. lets enter there name , city. when click submit redirects them thank-you page results form on page.

in form, have each element have name, lets name="username", in php, yould value of either get, or post response, depending on method of form.

html form

<form action="process.php" method="get">     <input name="username" type="text"></input>     <input type="submit" value="submit"></input> </form> 

or

<form action="process.php" method="post">     <input name="username" type="text"></input>     <input type="submit" value="submit"></input> </form> 

process.php

$someusername = $_get['username'];  $someusername = $_post['username'];