Hi Ron
Try This
$sql = mysql_query("SELECT *
FROM $table1, table2
WHERE user_id ='$user_id'
AND table1.table1_id = table2_table1_id
AND date <= $from_date
AND date >= $to_date");
while($result = mysql_fetch_array($sql)) {
print "Stuff";
}
What you need is merge both table with a unique id so table1 and table2 should have a field that will nerge them together
Hope this helps