I’m just learning and I have an annoying problem with my blog display…
When I delete an entry in my blog (test post, mistake, whatever) then post another entry, it fills in the deleted post’s spot.
How do I stop that from happening?
ex. (after deleting post id# 3 then writing post id# 6, #6 displays out of order in #3’s spot.)
id# 1
id# 2
id# 6
id# 4
id# 5
Copy of my table…
CREATE TABLE `testblog` (
`id` int(4) NOT NULL auto_increment,
`comment` varchar(1000) NOT NULL,
`datetime` varchar(65) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Thanks in advance…