I think you're looking for passthru (or perhaps system or exec). If your php
is like this:
and hello.pl is like this:
#!/usr/bin/perl
print 'Args:'.join(' ', @ARGV);
Your web page will read:
Args:yay
You'll probably need to change the method of input (to use @ARGV instead of
<>) on your Po
I'm stumped. I've searched all over and can't figure this one out.
I have a perl script that waits for input on the command line. You type in a string
and it returns a string.
I'd like to be able to this via php, since I can't rewrite the script in php, since
it's a little over my head.
So, h
2 matches
Mail list logo