Re: [PHP] Problem to run java command line with passthru()

2001-03-28 Thread Brian Clark
Hi -Tuna-, @ 1:42:21 AM on 3/29/2001, nicuc.ac.jp wrote: ... > $java HelloWorld ... > passthru("java HelloWorld") ; > ?> > But call through browser its return nothing. no out put , no error > display. I test my script by log-in Telnet to call the PHP script > directly. Try backticks, but be

[PHP] Problem to run java command line with passthru()

2001-03-28 Thread nicuc.ac.jp
Hello, I try to use passthru() command to execute command line in my script. At Telnet I can use following command to execute my java program and out put is fine. $java HelloWorld So, I need to embed this command line in the script like this : // java.php But call through b