If you have a form, and you set the do parameter in the form (<input type="hidden" name="do" value="updateoptions" /> ), then using "if ($_POST['do'] == 'updateoptions')" would be appropriate. However, if you are sending the do variable ONLY via the url - myprofile.php?do=updateoptions&newstyleset=114 - then $_POST['do'] is not valid, you must change that line to use $_GET['do']. If using a button, as per the template you posted, then the condition using $_POST['do'] is valid.
|