View Single Post
Old 08-02-2008, 05:47 AM   #8 (permalink)
Jako
The Wanderer
 
Join Date: Jun 2005
Posts: 21
Thanks: 1
Jako is on a distinguished road
Default

This is what I ended up going with which worked perfectly

PHP Code:
<?php 
while($row mysql_fetch_assoc($result)) {
$ages = array();
$ages[] = calculate_age($row['month'], $row['day'], $row['year']);
if (
in_array($a$ages)) { ?>
and $a was the age I was passing through the url.
Jako is offline  
Reply With Quote