Assuming you want to force the download, just use [man]header/man:
header('Content-type: application/octet-stream');
header('Content-disposition: attachment; filename=word.doc');
readfile('word.doc');
The [man]readfile/man simply outputs the contents of the file.