File "docx01.php"

Full Path: /home/analogde/www/FTP/Monsta-FTP-master/docx01.php
File size: 378 bytes
MIME-type: text/x-php
Charset: utf-8

<?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);

?>