I am trying to figure out how to add a seqential number from a form instead of a POST data
so i want to make this:
insert into database ('row1') values ('$_POST[value]')
and turn it into this:
insert into database ('row1') values ('nextvalue')
so if say the first value is 100 the next will be 101