I have somewhat of a problem, using the following code:
$getTS = mysql_query("SELECT * FROM book WHERE chapter='$url' && verse='$verse'");
When I use
mysql_num_rows($getTS)
it returns 2, 3, etc (which is perfect), however, when I am printing it out I only one get row using the following code:
$rowTS = mysql_fetch_array($getTS);
$summary = $rowTS['text'];
echo $summary;
Any help would be greatly appreciated.