Press Releases



No records found
"; } else { //LOOP THROUGH TO MAKE THE ROWS while($row = @mysqli_fetch_array($records)) { //GET VARS WE NEED AND BUILD LINK $idnum = $row['idnum']; $title = stripslashes($row['title']); $teaser = stripslashes($row['teaser']); $date_ent = $row['date_ent']; $date = date('m/d/Y', strtotime($date_ent)); $link = "view.php?idnum=".$idnum."&category=press"; print ""; } } //COMPLETE EVERYTHING FOR PAGINATION if($page != 1) { $pageprev = $page - 1; print "PREV".$limit." "; } else { print "PREV".$limit." "; } $numofpages = $totalrows / $limit; for($i = 1; $i <= $numofpages; $i++) { if($i == $page){ echo($i." "); }else{ print "$i "; } } if(($totalrows % $limit) != 0) { if($i == $page){ echo($i." "); }else{ print "$i "; } } if(($totalrows - ($limit * $page)) > 0) { $pagenext = $page + 1; print "NEXT".$limit.""; }else{ echo("NEXT".$limit); } //CLOSE THINGS UP @mysqli_free_result($records); @mysqli_close(); ?>