I have two php files.
first one execute the second one I want to send a params with the exec
I have no idea how to get the params i sent in the second file
first.php:
$params="hello";
shell_exec('php file.php $params > /dev/null 2>/dev/null &')
file.php:
echo $params;
Thanks!