Blame view

html/Oscilloscope/Global/5_Menu/cmd_menu.php 253 Bytes
c825216f   lwadbled   feat(main.php): R...
1
2
3
4
5
6
7
8
9
10
  <?php
  	/* Commande Menu ON */
  	if(array_key_exists('menu_on',$_POST)){
  		shell_exec('lxi scpi -a '.$adresse.' "menu on"');
  	}
  	/* Commande Menu OFF */	
  	if(array_key_exists('menu_off',$_POST)){
  		shell_exec('lxi scpi -a '.$adresse.' "menu off"');
  	}
  ?>