$DaTitle\r\n";
if ($DaBadlink == 1) {
print " [Bad link]\r\n";
}
if ($DaURL != "" && $DaURL != "nopic") {
print " Wayback Machine mirror\r\n"; print " | \r\n";
}
while ($DaCounter <= 5) {
if ($DaCounter == 0) {
print "This | \r\n"; } if ($DaCounter == 1) { print "space | \r\n"; } if ($DaCounter == 2) { print "intentionally | \r\n"; } if ($DaCounter == 3) { print "left | \r\n"; } if ($DaCounter == 4) { 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 | Dead links :( |
Search project examples |
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dahalloffame = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and daupright = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dacocktail = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dadriving = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Do it this way because I'm a little lazy :) $dbquery = "select * from cabinets where daapproved = 1 and dadesktop = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and daother = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dajukebox = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dacountertop = 1 and dabadlink != 1"; DoTheExamples(); ?> -- Back to top --
|
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 |
-- Back to top --
(Can you help fix one of these?) |
// Code by Gregg Buntin, Realm Laboratories, LLC // gbuntin@realmlabs.com $dbquery = "select * from cabinets where daapproved = 1 and dabadlink = 1"; DoTheExamples(); ?> -- Back to top --
// 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);
}
?>