Client & server side includes.
Is it posible for a php script to call a perl script?
eg:
Code:<?php requier "*.pl" ?> *.pl #!/usr/bin/perl -wT
Would this tell the server to change the command line to perl?
Client & server side includes.
Is it posible for a php script to call a perl script?
eg:
Code:<?php requier "*.pl" ?> *.pl #!/usr/bin/perl -wT
Would this tell the server to change the command line to perl?
http://dev.x10hosting.com (this has nothing to do with x10hosting)
->All us helpful people here at x10hosting would like to reach our next user groups, "Community Paragon". Please click the+rep icon on the left hand side of a post if that post was helpfull.
I don't think you could execute it by using require() or include() in php, but you probably could use command execution to do it. Something like `perl *.pl`. I'm not sure how the cwd will work in this case, though.