08-02-2008, 05:47 AM
|
#8 (permalink)
|
|
The Wanderer
Join Date: Jun 2005
Posts: 21
Thanks: 1
|
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.
|
|
|
|