when i click on download the web page created using php is to be converted to .doc file.But in the file only text is showing not the graphs and images.The code is below:-
<?php
$fileName = $_GET['urlid'];
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=$filename");
readfile("Report/$filename");
print_r($filename);
?>
Now what should i do to get the images and graphs in the file.
Plz help