$DaTitle\r\n";
if ($DaURL != "" && $DaURL != "nopic") {
print " \r\n"; } print " {Description} $DaDesc\r\n"; print "Wayback Machine mirror\r\n"; print " | \r\n";
}
while ($DaCounter <= 3) {
if ($DaCounter == 0) {
print "Space | \r\n"; } if ($DaCounter == 1) { print "intentionally | \r\n"; } if ($DaCounter == 2) { print "blank | \r\n"; } $DaCounter = $DaCounter + 1; } print "
Hall of fame | Upright cabinets | Cocktail cabinets |
Driving/Cockpit cabinets | Desktop controls | Other arcade projects |
Jukeboxes | Bartop/Countertop | Search project examples |
|
|
|
|
|
|
Learn to build jukeboxes |
|
|
Pete's Atari Jaguar Hack | Pete's Atari 2600 hack | Pete's Atari 5200 hack | Atari Jaguar Spinner | Arcade
Paradise's You Don't Know Jack controllers Encoder |
// Imbedded cgi pages.
$fp = fopen("http://www.arcadecontrols.com/examples_counter.shtml", "r");
if(!$fp)
{
// if it can't find the page do this
echo "Could not open connection to the perl / cgi script.";
echo "$errstr ($errno)
";
} else {
// Page found... now lets read it and output it in the page this code is in
while(!feof($fp))
{
$TheString = trim(fgets($fp,500));
echo $TheString;
}
fclose($fp);
}
?>