Here's the code:
$start = $POST['sdate'];
$end = $POST['edate'];
$tech = $_POST['techsid'];
...
$sql = 'SELECT at.* FROM at WHERE ((at.date BETWEEN \'$start\' AND \'$end\') AND (at.tid = \'$tech\'))';
I run the query
then I while loop the info ($row = mysql_fetch_array(results)) blah blah blah!
I'm pretty sure that there is something wrong with the format of my actual query.
Thanks in advance