RE: [PHP] Deleting rows from a table with autoincrement. . .

2003-01-10 Thread David Freeman
> My question is this: is it possible to use > autoincrement to generate > the id's and still keep them sequential when I delete say, > item 3 of 5. Generally speaking, an auto-increment column will not fill gaps and keep sequential orders. Your choice, basically, is to write your code

[PHP] Deleting rows from a table with autoincrement. . .

2003-01-10 Thread Harris, Alex (OCTO)
I'm writing a mailing list manager in an effort to learn mysql and php and I've run into a bit of a problem extremely early on. . . I'm trying to get the database to be updateable by the user so that the user can add and remove addresses as needed. In order to do this I'm using autoincremen