GT5: Prologue Official Ranking Registry goes online on Official web

  • Thread starter amar212
  • 44 comments
  • 13,424 views
excellent!!

does your translated rank update when the 'official' rank does?

yes :sly:

I'll always look for the page on the official website before translating in french or in english

in php :

PHP:
  <?php
//Define official url
$url_psn = "http://www.gran-turismo.com/jp/gt5p/ranking/".$_GET['p'].".html";
	
//Get HTML source of $url_psn
$codehtml = file($url_psn);
		
//Loop through HTML source
foreach($codehtml as $key_line => $line)
{
    //Here : Translating code & filter to display only the ranking
    ...
}
?>
http://fr.php.net/manual/en/function.file.php
 
Back