Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
FTP
/
Monsta-FTP-master
:
docx01.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php $file = 'path/to/document.docx'; $file = 'http://analog-design.net/2024_PHP/2024_PHP_21_12_2024/FTP/Monsta-FTP-master/test.docx'; header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); header('Content-Disposition: inline; filename="' . basename($file) . '"'); header('Content-Length: ' . filesize($file)); readfile($file); ?>