Skip to content

Instantly share code, notes, and snippets.

View Zylvian's full-sized avatar

Jarle Hjellvik Wallevik Zylvian

View GitHub Profile
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$.ajaxSetup({ cache: false });
setInterval(async () => {
$.ajax({
url: 'callPy.php',
<?php
$outie = exec('sudo /usr/bin/python /var/www/html/rainFetch.py');
echo $outie;
$command = escapeshellcmd('/var/www/html/rainFetch.py');
$output = shell_exec($command);
echo $output;
?>