HTML form – submit to a new window
We use HTML form a lot for the user to input data and process those data from a PHP file, but with the standard code of a HTML form:
<form method="post" name="bus" action="afile.php"> <input type="text" name="atext" /> <input type="submit" value="submit"/> </form>

