Sounds like you'll need to either add a limit to the query:
$query="SELECT * FROM Position ORDER BY Latitude ASC LIMIT 4,1";
This will return 1 row, starting with the 4th result returned.
Or, use a while loop as mentioned above and count the results:
$i=0;
while($row = mysql_fetch_row($result))
{
if ($i==3)
{
echo $row['P_ID ']."<br>";
echo $row['Latitude ']."<br>";
echo $row['Longitude'];
}
$i++;
}
The first option is probably a lot more efficient, but both should work.