Hi,
Is it possible to send information get or post without using a form. I see a lot of links sending get info on other websites, but I'm not sure how that works. Thanks. 🙂
you certainly don't need a form to send GET info. just add vars to your URL string:
http://www.example.com/index.php?name=system_critical
this will be available in index.php as $_GET['name']
also have a look at this article
Cool, I think I figured it out. Thank you very much.