Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7947425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:25:42+00:00 2026-06-04T01:25:42+00:00

I have a standard HTML form on a WordPress post that the visitor will

  • 0

I have a standard HTML form on a WordPress post that the visitor will fill out. It consists of mostly checkboxes. What I would like, is after the form is submitted, a page is then presented to the user showing what they checked. For example, if the visitor checked off Checkbox A, B, and E, (but not C and D) then upon submission they would see the following:

You submitted:
Checkbox Value A
Checkbox Value B
Checkbox Value E

Obviously I can do this with just PHP, but my client would like to be able to modify the form options. Therefore I will need an easy to use backend.

Is there a plugin or user friendly way that this can be created? Or is my best bet to start building it myself?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T01:25:43+00:00Added an answer on June 4, 2026 at 1:25 am

    the easiest way would be:

    <pre>
    <?php var_dump($_POST);?>
    </pre>
    

    but you can style it like:

    <?php
        foreach($_POST as $key=>$post_data){
            echo "You posted:" . $key . " = " . $post_data . "<br>";
        }
    ?>
    

    Note that this might give errors if the $post_data type can’t be displayed as a string, like an array in the POST data. This can be extended to:

    <?php
        foreach($_POST as $key=>$post_data){
            if(is_array($post_data)){
                echo "You posted:" . $key . " = " . print_r($post_data, true) . "<br>";
            } else {
                echo "You posted:" . $key . " = " . $post_data . "<br>";
            }
        }
    ?>   
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a standard html form that uses a background image. I would like
I have a form that submits parameters using standard HTML controls to a PHP
I have the following dynamically created HTML block: <form class=standard settingsPage method=post enctype=multipart/form-data name=account
I have an html table that looks like this in a standard HTML 4.01
Is there a coding standard for HTML? Please suggest links that have the coding
If I have a standard HTML textbox: I can retrieve the value using Request.Form.
I have an HTML form which consists of several fieldsets (each has identical fields).
I have a simple HTML form that uses uses ajax in part of the
I have a MultiLine asp:Textbox (a standard html textarea for those non-asp people) that
I have a web application that have standard form authentication declared, like this: <login-config>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.