I'm trying to do this:
<?php include ("http://pub50.ezboard.com/bloserclub"); ?>
But I get a HTTP request error and stuff. How do I make it work?
If you're trying to include a local file, don't use the [url]http://[/url] portion of it.
If you're trying to include content from another host, try using fopen instead, as in:
<?php $fp = fopen("http://pub50.ezboard.com/bloserclub", "r"); ?>
HTH.
I still get a HTTP request failed error.