Hi there,
I have a follwoing code segment in php
I was wondering if there is a way to have the linux command in exec to run in the background and instantly redirect the user to thankyou.php?
Currently, the thankyou.php only shows up after the time consuming linux command has executed.
Any input on this will be great !
I have a follwoing code segment in php
Code:
exec ("some long linux command to execute");
header ("Location:[URL unfurl="true"]http://www.domain.com/thankyou.php");[/URL]
I was wondering if there is a way to have the linux command in exec to run in the background and instantly redirect the user to thankyou.php?
Currently, the thankyou.php only shows up after the time consuming linux command has executed.
Any input on this will be great !