File "viewer02.php"

Full Path: /home/analogde/www/MDPH/Presentation/explorer/viewer02.php
File size: 936 bytes
MIME-type: text/html
Charset: utf-8

<!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>