HI,
I am a newbie to PHP so I ask you to forgive my ignorance.
I am faced with the problem that my webhost disabled the exec() function and I got a script that uses the exec() function.
I would like to know how I could replace with an equivalent command that has the same effect.
For better understanding here is the part of code that I have to deal with:
if($oldvalue1==$newvalue1)
{
$output1 = exec("php update_butler.php >/dev/null &");
}
if($oldvalue==$newvalue)
{
$output = exec("php update_records.php >/dev/null &");
}
Basically I understand that this command ('exec()') shal execute the update_records.php. I hope there´s another way to execute this php file as I would have to find a webhost that provides exec() access.
Thank you very much and best regards,
MasterchiefCM