Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
explorer
:
viewer02.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Intégration de Office Online Viewer</title> </head> <body> <h1>Document Office intégré</h1> <?php // URL de votre document //$documentUrl = 'https://example.com/path/to/your/document.docx'; //$documentUrl = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/test.docx'; echo getcwd(); $documentUrl = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/test.docx'; $documentUrl = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/test.pptx'; // URL de Office Online Viewer $viewerUrl = 'https://view.officeapps.live.com/op/view.aspx?src=' . urlencode($documentUrl); ?> <iframe src="<?php echo $viewerUrl; ?>" width="600" height="400" frameborder="0" allowfullscreen></iframe> </body> </html>