I am trying to get contents of a Website with simple html DOM as follows:
<?php
include_once('../simple_html_dom.php');
$html = file_get_html('http://www.opaltransfer.com/en');
echo($html);
?>
When i run this on my localhost everything works fine, However when i try to run it on a remote server i am getting
Found
The document has moved here.
Why? and what can i do to get it to work? Thanks in advance