C
|
cgphp 7/12/2013 |
Check this article http://xlinesoft.com/phprunner/docs/choose_fields.htm |
![]() |
Sergey Kornilov admin 7/12/2013 |
If your field is autonumber - seeing the next ID is not possible because it will be generated by the database at the moment your record is added. What you can do is to display the approximate number using SQL query like select max(ID)+1 as newid from yourtable |