filegetcontents
Posted: Tue Sep 20, 2005 6:40 pm
hello, im not at home at the moment so ill try my best to show you what im trying to do with out actually posting my code...
im trying to do a file_get_contents
When i do that it does get the content, but it gets the contents of the preloader. In other words when you click on this link
it says "connecting to database"
then redirects to this page http://nw4.novaworld.net/NWBanned.dll
if you click on that link you get an error.
What i want to do is when you click on this link
it directs you to a 'Banned List' page. I want to get the contents of that page after it "connects" to the database.
Neither of the links works.
Can someone give me an idea?
Thanks
feyd | made the insanely long links shorter
im trying to do a file_get_contents
Code: Select all
<?php
$url = "http://nw4.novaworld.net/NWBanned.dll?success=bhd_6_banned.htm&failure=bhd_6_main.htm&relay=bhd_6_relay.htm&msgbase=bhd_6_msg.htm&nodb=bhd_6_nodb.htm&pfid=26";
$content = file_get_contents($url);
echo $content;
?>it says "connecting to database"
then redirects to this page http://nw4.novaworld.net/NWBanned.dll
if you click on that link you get an error.
What i want to do is when you click on this link
it directs you to a 'Banned List' page. I want to get the contents of that page after it "connects" to the database.
Neither of the links works.
Can someone give me an idea?
Thanks
feyd | made the insanely long links shorter