blakesmoore Posted May 10, 2012 Share Posted May 10, 2012 Hey Guys, is it possible to embed a .pl script in php Quote Link to comment https://forums.phpfreaks.com/topic/262347-phpperl/ Share on other sites More sharing options...
trq Posted May 10, 2012 Share Posted May 10, 2012 Considering css has nothing to do with php I would suggest using a <link> to bring the css into the pl file. You can't embed a pelr script within a php script. Quote Link to comment https://forums.phpfreaks.com/topic/262347-phpperl/#findComment-1344445 Share on other sites More sharing options...
The Letter E Posted May 14, 2012 Share Posted May 14, 2012 Hey Guys, is it possible to embed a .pl script in php Why would you need to embed a perl script into a php script? It seems more likely that you are interested in having a php script and perl script outputting different elements of an html page, which is quite easily achieved. You must simply use one or the other as either an api, or separate page that can be included using an iframe. If you actually want the perl script to "interact"(receive data from the php script and return data to the php script) with the php script at run time, you will need to create a perl rest api, which is as simple as getting some query string variables and outputting an xml or json response, either of which can then be interpreted by the php script you are executing. Wherever you want to access the perl data all you need is a quick curl or file_get_contents call and you're set. Quote Link to comment https://forums.phpfreaks.com/topic/262347-phpperl/#findComment-1345203 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.