Hi Can any one help me out in integrating perl modules in php script. I have perl modules. I need to pass parameter to those perl modules and receive the values from modules. so that i process the value in php script... am sure some one of u have dealt with it... I need ur assistance to progress....
Do it as a webservice; from your PHP script. You will need to make the data transportable either through serialize, json, xml (and so on). Pass it to a listening cgi/web service. From there, you can pass it through the perl modules and then return the data back to the PHP script.