Code: Select all
<?
$row_rsScholarshipDetails = mysql_fetch_assoc($rsScholarshipDetails);
$category = $row_rsScholarshipDetails["category"];
echo "Category: ".$category."<br>";
?>Code: Select all
<?
$totalRows = mysql_num_rows($rsScholarshipDetails);
if($totalRows > 0){
while ($row_rsScholarshipDetails = mysql_fetch_assoc($rsScholarshipDetails)){
$require1 = $row_rsScholarshipDetails["reqr1"];
//then create my table and display my results from the query into a
//table
}
}
?>ljCharlie