Hi Brandon,
I'm not sure how to build the string which to pass to Perl and where to insert within exec ?.
exec("/path/to/your_perl_script.pl $message > /dev/null 2>&1 &");
My Perl script is looking for sets of var=value pairs named @message (I know very little about Perl but believe the @ means an array ? so I am doubtfull the following string would work:
Name=Peter\n; email=Me@dl.net\n; addr=12 hill st.\n; city=Mytown;
$message=$Name.$email.$addr.$city;
the first problem with the above is that I have lost the var=value pairs !
Thanx