I have a table called "reservations" containing columns
id
serviceID
dateCreated
name
email
phone
comments
I want to that user can select date from "dateCreated" (dropdown) and then show the results. Right now I have this
$tbl_name = "reservations"; "$select = SELECT * FROM `".$tbl_name."` LIMIT 0 , 30"; What should I do?