In my newsletter I want to insert a search-form in order to search among my html documents in my site. How can I add such a form? PS: I don't want "Google searching of pdf documents", I want MY PDF searching the web! thank you
I think the mechanism is called 'Acroforms' (They may have changed the name though)
This Doc, gives some details of the API:
Not sure if you need 'Distiller' or something like this to create these though...
As far as i understood, you have newsletter sent to clients, where you want input for search form that would find pdf documents on your site.
First part is easy - form that would lead to your site. Like
<form action='http://yoursite.com/some_pdf_search_action/'> <input type='text' name='q' /> <input type='submit' /> </form>
Second part requires previous pdf indexing. Doint it on server is rather complex. Read pdflib solution for php at http://php.net/manual/bg/ref.pdf.php (search for "pdf2text"). Will require additional packages to be installed.
After that its a matter of indexing pdf as text, storing it in database and searching it either with natural LIKE syntax or boolean. Or if you have too many documents - using lucene or sphinx