Does the $_POST array automatically clear itself out each time
I do a new form with POST method ?
Or am U suppoed to delete the array elements myself somehow ?
If so how ?
What I mean is if I use a form with input boexs names such as
name = 'test1'
name = 'test2'
and then later in a diferent program use a diferent form
with values
name = 'sum1'
name = 'sum2'
have $_POST['test1] and 2 been deleted automatically or does the POST array just keep getting bigger ?