Results page in other window
I have this simple form:
<form method="post" action".">
<input type="text" name="title"&开发者_如何学Pythongt;
<input type="submit" name"send">
</form>
I want that when a user click on submit, then will be open another window of browser with the results. Is it possible?
If you just need to open a new window:
<form method="post" action="..." target="_blank">
...
If you want a popup or lightbox or anything scripty:
<form method="post" action="..." onsubmit="yourFunction()">
Use this
<form method="post" action"thepagetodisplay.php">
<input type="text" name="title" id="title">
<input type="submit" name"send">
</form>
on thepagetodisplay.php
extract($_POST);
echo $title;
精彩评论