Probably better using cURL since you only want the content of the page, and it'll allow you to use URLs to specify the location of the file assuming your PHP setup allows for it.
Code:
$curl_handle = curl_init();
curl_setopt($curl_handle,CURLOPT_URL, 'http://www.siet.com/test/includes/dbar.php');
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER, 1);
$includedphp = curl_exec($curl_handle);
curl_close($curl_handle);