10/10/2018, 09:23

xuat trang web ra file word

minh dang gap van de xuat trang web ra file word, nhung chua biet lam the nao.
co ai biet chi minh voi.
thanks!
tuanweb viết 11:28 ngày 10/10/2018
Không biết web bạn sử dụng ngôn ngữ nào (asp.net/c#, php, java ..)

Nếu dùng asp.net/c# thì có thể dùng
--------------------
Response.ContentType = "application/ms-word";
--------------------
Cộng thêm mấy cái class trong System.IO, System.Text
tienhehe viết 11:35 ngày 10/10/2018
minh viet bang PHP, ban chi giup minh cach xuat ra file word duoc khong?
minh xuat ra duoc file .PDF nhung chua xuat ra duoc file word
thanks ban nhieu!
tuanweb viết 11:39 ngày 10/10/2018
PHP thì dùng header("Content-type: application/x-ms-download");

xem demo online

Code:
<?php
$WorlFileName="viettri-net-vn". ".doc";

header("Content-type: application/x-ms-download");

header("Content-Disposition: attachment; filename=$WorlFileName");

header('Cache-Control: public');

//đoạn nội dung sẽ xuất ra word
echo "welcome to VietTri.net.vn";
?>
tienhehe viết 11:30 ngày 10/10/2018
cam on ban nhieu nhe
Bài liên quan
0