Build Your Own Arcade Controls Message Boards
// Imbedded message board header
$fp = fopen("http://www.arcadecontrols.com/arcade_message_header.html", "r");
if(!$fp)
{
// if it can't find the page do this
echo "Could not open message board header! Email saint please!";
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);
}
?>
Main Board
General discussion forum. Mind your p's and q's please!