| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>A adinville webcam</title>
- </head>
- <body>
- <p>The content of the document......</p>
- <?php
- $output = shell_exec('fswebcam -r 1920x1080 --bottom-banner /var/www/my_webapp/www/image.jpg');
- echo "<pre>$output</pre>";
- ?>
-
- <?php
- echo '<img
- class="fit-picture"
- src="image.jpg"
- height="600"
- alt="Grapefruit slice atop a pile of other slices"
- />';
- ?>
- </body>
- </html>
|