admin管理员组

文章数量:1026989

I have a custom form in WordPress theme template but it is displaying internal server error upon submission. There is no error in error.log file regarding this submission. I am hosting my website on bluehost and here is my form

<form method="post"  action="<?php echo get_template_directory_uri(); ?>/formprocessing.php">    
        <label for="first-name">Name*</label>
        <input class="form-control" type="text" id="name" name="volunteerName" required/>
        <label for="address">Address*</label>
        <input class="form-control" type="text" id="address" name="volunteerAddress" required/>
        <label for="email">Email*</label>
        <input class="form-control" type="email" id="email" name="volunteerEmail" required/>
        <input class="form-control" class="btn btn-primary" type="submit" value="Submit" id=""/>
</form>

In formprocessing.php file I am just displaying some text and upon submission it redirects to this template file but displaying Internal server error.

<?php   
if (isset($_POST['volunteerName'])){

echo "Form working";
exit;

}
?>

I have spent a lot of time to figure out this issue but still not able to figure out this. Your help will be much appreciated.

I have a custom form in WordPress theme template but it is displaying internal server error upon submission. There is no error in error.log file regarding this submission. I am hosting my website on bluehost and here is my form

<form method="post"  action="<?php echo get_template_directory_uri(); ?>/formprocessing.php">    
        <label for="first-name">Name*</label>
        <input class="form-control" type="text" id="name" name="volunteerName" required/>
        <label for="address">Address*</label>
        <input class="form-control" type="text" id="address" name="volunteerAddress" required/>
        <label for="email">Email*</label>
        <input class="form-control" type="email" id="email" name="volunteerEmail" required/>
        <input class="form-control" class="btn btn-primary" type="submit" value="Submit" id=""/>
</form>

In formprocessing.php file I am just displaying some text and upon submission it redirects to this template file but displaying Internal server error.

<?php   
if (isset($_POST['volunteerName'])){

echo "Form working";
exit;

}
?>

I have spent a lot of time to figure out this issue but still not able to figure out this. Your help will be much appreciated.

本文标签: Custom form in theme template displaying internal server error upon submission