Create pipeline.php

This commit is contained in:
tpollina 2019-12-10 15:28:55 -08:00 committed by GitHub
parent dce6a51af9
commit 675e48565c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
pipeline.php Normal file
View file

@ -0,0 +1,12 @@
<?php
// get the q parameter from GET
// Get the first parameter which is an integer
$value = $_REQUEST["value"];
// Get the second parameter which is a string
$string = $_REQUEST["string"];
//Run the command line for the python script with the value as parameter
$output = shell_exec('/usr/bin/python3 /var/www/html/I2C/pipeline.py '.$value.' '.$string);
?>