我正在使用自定义 php 页面模板向我的 wordpress 添加一个表单
下面是我的 wordpress 页面模板 php 代码:
<?php
/*
Template Name: Form
*/
?>
<?php get_header(); ?>
<div id="content">
<h1 class="page-title"><?php the_title(); ?></h1>
<div class="entry">
Welcome <?php echo $_POST["fname"]; ?>!<br>
You are <?php echo $_POST["age"]; ?> years old.
</div> <!--end .entry-->
</div> <!--end #content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
我在我的页面中包含了以下代码,它显示了表单
<form action="http://127.0.0.1:4001/wordpress/script" method="post">
Name: <input type="text" name="fname">
Age: <input type="text" name="age">
<input type="submit">
</form>
这将在新页面中显示表单数据,而不是在同一页面上显示结果。如何在同一页面上显示结果?
我想要这样的东西: