always 32 digits yep
and [a-z][A-Z][0-9]
and [a-z][A-Z][0-9]
<?php
php
$ver = '1.2';
$act = 'pst';
$name = '%3CKchrpm%3E';
$host = 'http://www.lfsworld.net';
$path = '/pubstat/get_stat2.php';
$query = "?version=$ver&action=$act&racer=$name";
$url = $host . $path . $query;
$stream = file_get_contents( $url );
$stats = explode( "\n", $stream );
$wins = $stats[4];
$laps = $stats[2];
$miles= $stats[0] / 1600;
$fule = $stats[1];
$fin = $stats[4] + $stats[5] + $stats[6];
echo "Laps Completed: $laps\n";
echo "Miles Driven: $miles\n";
echo "Gallons of Fuel Burned: $fule\n";
echo "Races Completed: ${stats[7]}\n";
echo "Wins: $wins\n";
echo "Podium Finishes: $fin\n";
?>