Hi all,
I am very new to php,I have problem for running php script in backround.My issue is I have a .php (script1.php) file that should run in backround when i click the button in another php (script2.php) file.
Am using Windows xp
Php version 5.3.8
Apache server.
I googled and found like this..
<?php
$cmd="C:\wamp\www\Phpscript\script1.php";
pclose(popen("start /B ".$cmd, 'r'));
?>
but it is not helpful to me..Kindly suggest me any other way..
Thnaks