hey there i want to include my php file but i get an error
my page contains javascript
this is the error i am getting
[Thu Aug 05 15:38:01 2010] [error] [client 10.0.0.2] <br/><br/>Unexpexted output: \r\n<html>\r\n\r\n\r\n\r\n<script language="javascript" type="text/javascript" src................
this is my server code , i am calling the page via ajax
function getPageContent(&$response){
$PAGE_URL = $_POST['PAGE_URL'];
try{
echo '../' . $PAGE_URL;
}catch(Exception $ee){
error_log($ee->getMessage());
}
$response->fields->frame_main = file_get_contents('../' . $PAGE_URL);
}
thank you