Re: [PHP] Re: Program executing in PHP. Please help (SOLVED)

2002-07-04 Thread Latex Master
Hello Richard, PHP, Well I did a typo here. Sorry about it. At that moment i was really nuts, and needed a rest. Now I solved that problem, but only after UPDATING PHP from 4.0.6 to 4.2.1 And shell_exec worked. Exec didn't :( I'm going to investigate this question in the future. Thank's for

[PHP] Re: Program executing in PHP. Please help

2002-07-03 Thread Richard Lynch
>$output = shell_exec("uudeview -i /bla/bla.txt -p /bla/bla/"); >echo ""; >echo $kick_my_ass; >echo ""; >?> > And I get nothing :(. Script like below: Well, no... Your data is in $output, and you are echo-ing out $kick_my_ass... Try echo $output >$output = shell_exec("uudeview"); >echo ""; >ec