Thank you very much Sakar for your reply. Sorry for not being clear. I have a booking form for a hair styling salon with inputs for selecting a date and a style-title. Using just plain php (without wordpress) it’s simple to send the inputs to another page (booking_times.php) where the date, and style-title values can be collected eg:-
if(isset($_POST['submit'])) {
$style = $_POST['style-title'];
}
I’m trying to attempt the very same thing in a wordpress site. In my wordpress version of the same site the date will pass through to the booking_times.php page exactly the same as in a php only site but the selected style from the style dropdown list does not, instead it goes to
the page with the Title of style-title.
I’m basically trying to convert a php only site to a wordpress site and I’m at a bit of a loss as to where I need to do some research next.