我的WordPress中有一个简单的表单footer.php
:
<form class="form-inline" role="form" method="post" name="contact" action="sub.php">
<div class="form-group">
<label class="sr-only" for="my-name">Your first name</label>
<input name="my-name" type="text" class="form-control" id="my-name" placeholder="Your first name">
</div>
<div class="form-group">
<label class="sr-only" for="my-email">and your email</label>
<input name="my-email" type="text" class="form-control" id="my-email" placeholder="and your email">
</div>
<input type="submit" class="btn btn-danger" value="Subscribe!">
</form>
我想把它提交到文件中
sub.php
(位于同一目录中),如
action
. 但即使尝试了太多的解决方案,我仍然无法完成任务。
请给我指出最简单的解决方案。谢谢