Games
|
|
|
|
<?
$display_items = 10;
if($fd = @fopen("http://www.gamate.com/output/$display_items/", "r")) {
while ($buffer = fgets($fd, 4096)) {
list($name,$link) = explode(";",$buffer);
print "<a href="$link">$name</a><br>";
}
fclose($fd);
}
?>
|
|
|
Usage Example
|
|
|
Rate This Script
|
|
|
|