I'm creating a web page in php and I have a question. I have a form:
<form method="post" action="input.php">
.....
Data: <br><input type="date" name="data" ><br>
Start hour: <br><input type="time" name="starthour" min="09:30:00" max="16:30:00"><br>
End hour:
I would like to create that when the user enters the date automatically a search is performed in the database and all events for that date are shown. I tried using a calendar but I could not find functional for my case. How do you think I can accomplish something like this? Thank you for your attention and for your help.