Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
djman каза:Човека иска да пусне файла, щом е дал .sh.
http://php.net/manual/en/function.system.php
http://php.net/manual/en/function.exec.php
<a href="" id="startAutoUpdate">Старт</a>
<script type="text/javascript">
$('a#startAutoUpdate').on('click', function(e) {
e.preventDefault();
$.get('executor.php', function(d) {
$('img#webcam').attr('src', d.file);
log(d.output);
});
});
<?php
$command = '/usr/bin/fswebcam';
shell_exec($command);
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');
echo json_encode(array(
'file' => $file,
'output' => file_get_contents($log_file),
));