I have some data that needs to be posted without the site's pre-defined style for forms getting in the way. Can I use an href to post data without the use of the form, and then retrieve it with PHP?
HTML Example:
<a href="rcon.php?action=roomForward&roomId=7" />
PHP Example:
<?php
[Function Stuff for roomForward Here..]
$core->Mus('senduser', '$_GET["roomid"]', ' . USER_ID . ');
?>
My code isn't perfect but it's just supposed to make sense for now!
$_GETis commonplace. Are you asking about something different from that?