Hello everybody
is there a way to change the entry_no?!
instead of 1, 2, 3, 4, ... I would like to have something like
1001, 1002, 1003, 1004, ...
Kind regards,
iNeli
Started 3 years ago by ineli | 3 posts |
Hello everybody
is there a way to change the entry_no?!
instead of 1, 2, 3, 4, ... I would like to have something like
1001, 1002, 1003, 1004, ...
Kind regards,
iNeli
You will need to modify your mysql table to do so.
Let say your form is having id = 7, then you'll need to run this SQL query:
ALTER TABLE ap_form_7 AUTO_INCREMENT =1001;
run the query using PhpMyAdmin or any SQL client you are using.
That would set your form (in this case is having id =7) entry_no to 1001
MachForm Founder
thank you yuniar!!
You must log in to post.