File "viewer03.php"
Full Path: /home/analogde/www/MDPH/Presentation/explorer/viewer03.php
File size: 730 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 Google Drive 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.pptx';
// URL de Google Drive Viewer
$viewerUrl = 'https://drive.google.com/viewerng/viewer?embedded=true&url=' . urlencode($documentUrl);
?>
<iframe src="<?php echo $viewerUrl; ?>" width="600" height="400" frameborder="0" allowfullscreen></iframe>
</body>
</html>