Diğer penceresinde Sonuçlar sayfası

2 Cevap php

Ben bu basit formu var:

<form method="post" action".">
<input type="text" name="title">
<input type="submit" name"send">
</form>

Ben bir kullanıcı tıklama göndermek, o zaman sonuçları ile tarayıcının başka bir penceresi açık olacak istiyorum. Bu mümkün mü?

2 Cevap

Sadece yeni bir pencere açmak gerekirse:

<form method="post" action="..." target="_blank">
...

Bir pop-up veya lightbox falan Scripty isterseniz:

<form method="post" action="..." onsubmit="yourFunction()">

Bunu kullanın

<form method="post" action"thepagetodisplay.php">
<input type="text" name="title" id="title">
<input type="submit" name"send">
</form>

thepagetodisplay.php üzerinde

extract($_POST);
echo $title;