Server time.
But as said, use timestamps for age of entries; you could also set a trigger to update the time of the entry automatically.
Creating a field called "date_added", and assigning it as INT(integer) with eight to ten lengths.
Only then, would your query be:
SELECT `charId` FROM queue WHERE shipType = '$charShipType ' ORDER BY entryTime
...and don't use the MySQL delimiter(;), it will spew errors as PHP doesn't support multiple queries in that fashion.
Also, you then need to select it: eg.
$rowNumber = mysql_fetch_assoc($rowNumber);/php]
That would return an array of charId[i]s[/i], ordered by the time they were inserted.