hi,
am convert a html coding to word file and that html file have some images.when i click download link it's .doc downloaded.but that images not appear in that .doc file.i think that images not integrated with .doc.
here that example code
[code=php]
$content="<html ><head><title>s tuff</title></head><body><b>H ello <img src="hello.gif" ></b>
World</body></html>";
$stuff=$content ;
header("Content-type: application/msword; filename=hello. doc");
echo $stuff;
[/code]
pls any one give the solution
am convert a html coding to word file and that html file have some images.when i click download link it's .doc downloaded.but that images not appear in that .doc file.i think that images not integrated with .doc.
here that example code
[code=php]
$content="<html ><head><title>s tuff</title></head><body><b>H ello <img src="hello.gif" ></b>
World</body></html>";
$stuff=$content ;
header("Content-type: application/msword; filename=hello. doc");
echo $stuff;
[/code]
pls any one give the solution
Comment