I have some pdf file in folder C:\wamp\www\PhpProject1\uploads\1\AllFiles and pdftk exists in the same folder.In case of merging by commandline C:\wamp\www\PhpProject1\uploads\1\AllFiles\pdftk *.pdf output 123.pdf
works.
but in php i am using
$command = '/uploads/1/AllFiles/pdftk *.pdf output 123.pdf';
exec($command);
it doesn't work and also in case of full path. how to solve this.thanks in advance.