Search found 1 match
- Sat Nov 08, 2008 3:13 pm
- Forum: PHP - Code
- Topic: Help with exec()
- Replies: 1
- Views: 608
Help with exec()
-------------------------------------------------------------------------------- Hi, I want my php script (a.php) to call another script (b.php) and run it in background mode. This is what I use in a.php: exec ("/usr/bin/php b.php >/dev/null &"); And this is what I place in b.php (amon...