Hi. Could you help me?
I have being working with a database.
I created it using a php form. it display every thing propelly using a php page, then i use the DELETE statement to empty the table and then i start adding data again.
Then I did a SELECT * FROM table-name and it show everything fine but then I notice that the colum id/primary key does not start from the beginning gain so i did updated the table from the mysql command line fixing just the id columm with the righ id/primary key.
Now i do a SELECT * FROM table_name and it is updated fine, but when i run the php page that used to display everything, it does not show anything from the database.
Do i have to drop the table and start all over again?
Thanks