does anyone know how i can execute an X program from
my browser using php, the program is on my local computer,
here's what i've come up with so far, it starts a process
i can see with `ps -A`, but there is no display on the
screen???
--------------------------------------------
system('vlc --display :0.0 > /dev/null');
echo "Playing";
--------------------------------------------
skottieb
my browser using php, the program is on my local computer,
here's what i've come up with so far, it starts a process
i can see with `ps -A`, but there is no display on the
screen???
--------------------------------------------
system('vlc --display :0.0 > /dev/null');
echo "Playing";
--------------------------------------------
skottieb