I am trying to submit form and get that data in same page when i used the_permalink i am getting page not found.
I used this code:
<?php
/*
Template Name:testing
*/
if(isset($_POST["name"]))
{
echo $_POST["name"];
}
?>
<form action="<?php the_permalink(); ?>" method="POST">
<input type="text" name="name" id="name">
<input type="submit" value="submit">
</form>