Form Handling .php not working in wordpress -
i insert form in blog post
this code inserted in post
<form action="welcome.php" method="post"> name: <input type="text" name="name"><br> e-mail: <input type="text" name="email"><br> <input type="submit"> </form> name , email text fields , submit button.after create welcome.php file.
welcome.php file code following.
<?php get_header(); ?> welcome <?php echo $_post["name"]; ?><br> email address is: <?php echo $_post["email"]; ?> <?php get_sidebar('single'); ?> <?php get_footer(); ?> but when fille name , email in text filed , click on submit button. http://tectrick.org/welcome.php not found error , form not processed
try using code below:
<form action="<?php echo get_stylesheet_directory_uri(); ?>/welcome.php" method="post">
Comments
Post a Comment