Blame view

exec.php 440 Bytes
35887fe7   troj   Commit rasp
1
2
  <?php
  	echo "<html><body><p>";
713b4147   troj   Commit Fin de projet
3
4
  	if (isset($_POST["button"])) {
  		$resultat = system("sudo python /var/www/cgi-bin/thread_dd.py");
35887fe7   troj   Commit rasp
5
  	}
713b4147   troj   Commit Fin de projet
6
  	if (isset($_POST["live"])) {
35887fe7   troj   Commit rasp
7
8
  		$resultat = system("sudo python /var/www/cgi-bin/live.py");
  	}
713b4147   troj   Commit Fin de projet
9
10
11
  	if (isset($_POST["modem"])) {
  		$resultat = system("sudo ../cgi-bin/test_modem.sh");
  	}
58842de0   troj   Commit fin de projet
12
13
14
  	if (isset($_POST["dmprinter"])) {
  		$resultat = system("sudo ../cgi-bin/test_impr.sh");
  	}
35887fe7   troj   Commit rasp
15
16
  	echo "</p></body></html>";
  ?>