Problem:
I have endless pdf files that come in to our office. Each pdf can contain multiple job/work orders's. I have built a way to upload these in to a web application. However because of the pdfs having multiple jobs I end up having more data because that document needs to be referred to by all of the jobs. What I would really like to have is two more fields so that when I upload the pdf I can say I want page 5-9 or x-x or whatever. Then when the pdf is uploaded it strips out the un-needed pages and only saves the pages I need. All of the code is done for storeing the jobs uploading the files. The only thing I need is code to strip away the un-needed pages.
I began looking through http://us.php.net/pdf but most, if not all of that, is for generation of pdf's which I certainly do not wish to do. Can someone point me in the right direction or a code snippet to get me started please =)