jameslat Posted March 30, 2010 Share Posted March 30, 2010 Hey, I have a question regarding basic php include function. how can i make my php include something from a website example include('http://www.web.com/index.php'); i can't get this to work, how can i fix this? or how could i use the php GET to grab a certain divlayer from the webpage? thanks for all the help! Link to comment https://forums.phpfreaks.com/topic/197031-php-includeget-questions/ Share on other sites More sharing options...
aeroswat Posted March 30, 2010 Share Posted March 30, 2010 Hey, I have a question regarding basic php include function. how can i make my php include something from a website example include('http://www.web.com/index.php'); i can't get this to work, how can i fix this? or how could i use the php GET to grab a certain divlayer from the webpage? thanks for all the help! Sounds like you are looking for a php screen scraper... check this out http://www.bradino.com/php/screen-scraping/ Link to comment https://forums.phpfreaks.com/topic/197031-php-includeget-questions/#findComment-1034333 Share on other sites More sharing options...
Jax2 Posted March 30, 2010 Share Posted March 30, 2010 Could be that they've disallowed allow_url_fopen or allow_url_include ... Link to comment https://forums.phpfreaks.com/topic/197031-php-includeget-questions/#findComment-1034335 Share on other sites More sharing options...
inversesoft123 Posted March 30, 2010 Share Posted March 30, 2010 url include is disabled on many servers. you can use implode for that. but its not much effective but u can use GET. $file = file("'http://www.web.com/index.php?$QUERY_STRING"); $file = @implode("", $file); echo $file; Link to comment https://forums.phpfreaks.com/topic/197031-php-includeget-questions/#findComment-1034336 Share on other sites More sharing options...
jameslat Posted March 30, 2010 Author Share Posted March 30, 2010 thnx guys, i'm sure with the info u previded i will find my answer. thanks a lot! Link to comment https://forums.phpfreaks.com/topic/197031-php-includeget-questions/#findComment-1034340 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.