Page is a not externally linkable
brotherhood_of_LAN - 1:44 am on Oct 28, 2012 (gmt 0)
$sql =
"SELECT fld_04_hrs, fld_08_hrs
FROM tbl_activities
WHERE fld_type = 'Kayak - Single' OR fld_type = 'Kayak - Double'";
Your initial query is saying match both (by using AND) which is why no rows are returned. Use OR instead.