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?
the easiest way would be:
but you can style it like:
Note that this might give errors if the
$post_datatype can’t be displayed as a string, like an array in the POST data. This can be extended to: