cmd_menu.php 253 Bytes
<?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"');
	}
?>