<?php
$out = array();
$execute='./test.py';
$name="test";
exec("$execute $name",$out);
foreach ($out as $value) {
echo "$value<br />\n";
}
?>
when I executing above code in local server its working..
But in hosted server, exec () function doesn't take the parameter variable '$name'.
why?