add hirunner

This commit is contained in:
SilicaAndPina 2020-12-30 16:46:49 +13:00
parent e553254bd5
commit 398388f5a4
9 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<?php
# Decide which version to use
if($_SERVER['HTTP_USER_AGENT'] == "Shockwave Flash") # Projector
{
$file = file_get_contents("horseisle_projector.swf");
header("Content-Type: application/x-shockwave-flash");
header("Content-Length: ".sizeof($file));
echo($file);
}
else
{
$file = file_get_contents("horseisle_patched.swf");
header("Content-Type: application/x-shockwave-flash");
header("Content-Length: ".sizeof($file));
echo($file);
}
?>