I'm new to php and when I add data in my table, the item_id will be AUTO INCREMENT and it must start at 00000001 what php function will I use ?
item_Id | item_description
00000001| Samsung galaxy s3
and when I add another item it will be something like this:
item_Id | item_description
00000001| Samsung galaxy s3
00000002| Remote Controller
I'm using codeigniter.