I installed the library for pdftk on my LAMP, and am trying to run it programatically to split a pdf into separate files for each page..
Assuming that I have the correct location for the pdftk library should
<? $command = "/usr/local/bin/pdftk example.pdf burst";
exec($command); ?>
with the pdf in the same folder as the php script do it?