0

オプトインフォームを特定のページにリダイレクトする方法を見つけようとしています ( http://www.example.com/thanks )

私のフォームのコードは次のとおりです。

<form action="http://mailer334.insty.me/subscribe" method="POST" accept-charset="utf-8">
<label for="name">Name</label><br/>
<input type="text" name="name" id="name"/>
<br/>
<label for="email">Email</label><br/>
<input type="text" name="email" id="email"/>
<br/>
<input type="hidden" name="list" value="efwefwefwefwefwef"/>
<input type="submit" name="submit" id="submit"/>
</form>

今のところ、Insty.me のデフォルト ページ ( http://mailer359911.insty.me/subscribe ) に人々を誘導しているだけです。これは私が望んでいることではありません。人々を追加するには、そのページに情報を投稿する必要があります。別のページにリダイレクトして、彼らに感謝し、さらなる指示を与えます。

4

2 に答える 2

0
<?php 
  if(!isset($_POST['submit'])) { 
?>

<form action="http://mailer334.insty.me/subscribe" method="POST" accept-charset="utf-8">
  <label for="name">Name</label><br/>
  <input type="text" name="name" id="name"/>
<br/>
  <label for="email">Email</label><br/>
  <input type="text" name="email" id="email"/>
<br/>
  <input type="hidden" name="list" value="efwefwefwefwefwef"/>
  <input type="submit" name="submit" id="submit"/>
</form>

<?php 
   } else { 
     include 'thanks.php';
} ?>
于 2013-10-01T14:38:58.817 に答える