Majestic XII is the code name of a top-secret military force of superhumans dedicated to protecting Earth from an Alien threat and keeping the knowledge of an alien presence secret from the public.
<?php
$filepath = "http://comics.drivethrustuff.com/remote.php?mid=2994&bgcolor=darkblue&color=red&cols=3&tdwidth=33%2525".
"&title=PRODUCTS%20CATALOG&sort=name&price=3&model=&free=1&limit=9".
"&width=100%2525&border=5&bordercolor=white";
$fp = fopen($filepath,"r");
while($line = fread($fp,32000))
$contents .= $line;
echo $contents;
fclose($fp);
?>