loaded page from javascript. tested for GET & POST. Only GET set as expected;
window.location.href = "medications_edit_revised.html?recordId="+id ;
Retrieved and used the data from the GET[]
Reloaded page from SUBMIT as shown below.
    <form method="post" action="">
<table id="detailsDivTable">
    <?php
$editClass->selectTheRecord();
    ?>
</table>
<fieldset name="Group1">
<legend>Group box</legend>
    <input name="saveButton" type="submit" value="Save" />
    <input name="deleteButton" type="submit" value="Delete" />
    <input name="cancelButton" type="submit" value="Cancel" />          
</fieldset>
</form>`
Tested GET[] & SET[]
    if  (isset($_GET['recordId']) ) {
    $recordId = $_GET['recordId'];
    require_once "medications_edit_revised.class.php";
    $editClass = new editRevisedClass($DBH, $recordId);
    }
    if(isset($_POST['saveButton'])) {
Both tested TRUE. Is this normal behavior. I expected the GET[] would have been cleared when the form was POSTed
If yes is there a way to clear the GET before sending the SUBMIT
Thanks
 
     
     
     
    