Then my friend, what you need to do, is figure out how to first:
1) Propogate an HTML send request for use in a website
2) Learn how to connect to a website via Inet or something along those lines.
3) Make sure that whatever you are sending to the internet via php script does NOT need to have any feedback. That is really time consuming to code.
Though not really "in line" with the current website (note it's a php site not VB6) i'll help you out.
Add the inet control to your project, and name it something like well... inet 🙂
Sending the request:
inet.Execute "http://website.com/page.php", "POST", "TEST=TEST", "Content-Type: application/x-www-form-urlencoded"
replace the "http://website.com/page.php" with whatever you want to send... for example. http://website.com/page.php?idx=1&cat=4&format=3
should work 😉