Tryinging to pull a recordset.
This is what i have:
mysql_select_db($database_wellness, $wellness);
$query_wellnesssessionbcount = “SELECT * FROM sessionb WHERE sessionb.count
<30”;
$wellnesssessionbcount = mysql_query($query_wellnesssessionbcount, $wellness) or die(mysql_error());
$row_wellnesssessionbcount = mysql_fetch_assoc($wellnesssessionbcount);
$totalRows_wellnesssessionbcount = mysql_num_rows($wellnesssessionbcount);
which works great but for one of the records i need it to be fore <20 not <30 … is it possible to make an AND statment in there to do that somehow? pertaining to the id of the record possibly?
Thanks!