Do you think it's possible to write a php application that crawl web pages (based on a certain criteria) and submit forms? Thanks/Regards
Hello, Everything is possible. If you view the code of PHProxy, it may guide you as to how it rewrite FORM tags (if that's what you need). You could parse a <FORM>, for each <INPUT>, <SELECT>, etc, and POST the data using fsockopen or cURL. Jay