OK no worries. How about this? I created a location table that fills a drop-down list on my form and for some reason it refuses to display a certain location, but it displays all the others no prob. I was wondering if it is because it is the only one that starts with a number, ie. 9th Life Sanctuary. Or maybe because it is the first one when sorted alphabetically. Could my code somehow skip the first record? Thanks. 
Code:
$sql = "SELECT `l_id`, `location` FROM `location` WHERE `ok` = 1 ORDER BY location";
$result_loc = mysql_query($sql,$connection) or die("Couldn't execute $sql query.");
$row = mysql_fetch_array($result_loc);
while($row = mysql_fetch_row($result_loc)){ ?>
<option value="<?php echo $row[0];?>"><?php echo $row[1];?></option>
<?php } ?>
Bookmarks