hopesfall
07-17-2008, 04:38 PM
Whats the function to get radio buttons, or i guess anything for that matter in input forms to reset what has been typed in once a user refreshes a page or clicks another radio box?
![]() | View Full Version : radio buttons hopesfall 07-17-2008, 04:38 PM Whats the function to get radio buttons, or i guess anything for that matter in input forms to reset what has been typed in once a user refreshes a page or clicks another radio box? CodyRo 07-18-2008, 07:37 AM $_GET or $_POST depending on how you submit the form, check this Tizag (http://www.tizag.com/phpT/examples/formex.php/) tutorial. dhui 07-18-2008, 09:25 AM use $_POST if you have passwords or other sensitive information...other than that you can use either $_GET or $_POST. |