File "viewer05.php"

Full Path: /home/analogde/www/Analyse/explorer/viewer05.php
File size: 706 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 PDF intégré</h1>
    <?php
    // URL de votre fichier PDF
    $pdfUrl = 'https://example.com/path/to/your/document.pdf';

     $pdfUrl = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/aaa.pdf';

    // URL de Office Online Viewer
    $viewerUrl = 'https://view.officeapps.live.com/op/view.aspx?src=' . urlencode($pdfUrl);
    ?>
    <iframe src="<?php echo $viewerUrl; ?>" width="600" height="400" frameborder="0" allowfullscreen></iframe>
</body>
</html>