Hi...
This may sound odd... but what I'd like to figure out is how to create a random number "generator".
I'm working with a board gaming site (about planes) and what I'd like to do is create a "serial number" effect... so every plane created on the site has a unique serial number that simulates real life aircraft serial numbers.
The format I want is a 5 digit format. The end result would be "42-XXXXX" (where, in the php code, it would look like thus) :
// this would be the output, as an example //
echo "<font size=2>42-$sn_variable</font>";
All 5 digit spaces would need to be filled... even if all 5 were zeros (for example, 42-00000).
Any help is greatly appreciated.