I had to read a web page and grab values and show on my web page by using PHP. The easiest way came to my mind was "fopen" . When I develop that on my local machine it worked perfectly but when I put that on live site it was not reading from external URL. If I need to continue on that I have to modify php.ini file to allow access which is not possible on a shared hosting. So it was tie to Google and find a better solution. And I found one and thought to share it with you all. This following php code developed by knkk and was shared on http://www.webdeveloper.com/forum/showthread.php?t=230985 function disguise_curl($url) { $curl = curl_init(); // setup headers - used the same headers from Firefox version 2.0.0.6 // below was split up because php.net said the line was too long. :/ $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,"; $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"; $header[] = "Cache-Control: m...