PHP & GNUPG question...

M Taylor mctylr@privacy.nb.ca
Sat Nov 10 13:49:02 2001


$command=htmlspecialchars($command);
echo "$command <br>";

replace with

$commandDisplay = htmlspecialchars($command);
echo "$commandDisplay <br>";

(You were escaping the characters: " < > which doesn't work
when you try to execute them with the exec() function.)