Hi
I hope you can help me...
I need to call a shell binary e.g. snmpget
and then go forward in the script without waiting for the
answer, but offcorse the answer must be taken care of...
Some thing like this
-------------------------------
$ipaddress_array;
foreach($ipaddress as $ip)
{
$answer = exec(snmpget 10.10.10.1 -c test 1.2.6.1.2.1.1);
}
---------------------------------
Whath i want is to make several snmpge "at once".
It's a redhat/apache enviroment and i can't add fork()
it isn't my server!