I have a php file
<?php
$op=exec("/usr/bin/sh /home/muralik/www/html/testing/testin.sh >> /home/muralik/www/html/testing/abc.log 2>&1 &",$rs);
echo "OP = ".$op;
echo "<br>RS = <pre>";
print_r($rs);
echo "</pre>"
?>
testin.sh
while(true)
do
echo "standard output"
echo "abc"
sleep 2
done
When i open the php file in localhost or web server. the shell script is not running.
What should i do. thanks in adavance.