Quote:
Originally Posted by MrMan9879
<form action="index.php?act=edit" method="get">
<input type="radio" name="sort" value="newsdesc" />
</form>
|
You could use a hidden field set it's value to the action, or just stick it in the $_SESSION array.
<form action="index.php?act=edit" method="get">
<input type="radio" name="sort" value="newsdesc" />
<input type="hidden" name="action" value="<?php print $_GET['action']" />
</form>