launch new tab and refresh original page codeigniter

Solutions on MaxInterview for launch new tab and refresh original page codeigniter by the best coders in the world

showing results for - "launch new tab and refresh original page codeigniter"
Greta
09 Sep 2016
1<form action="newpage.php" method="post" target="_blank" onsubmit="javascript: setTimeout(function(){location.reload();}, 1000);return true;">
2  Next Availiable ID: <input type="text" name="id" value="<?= $nextid ?>"><br/>
3  Your Name: <input type="text" name="thename" maxlength="64"><br/>
4  <button type="submit">Go!</button>
5</form>