This topic is locked

Auto Number On Add Page

7/11/2013 7:39:36 PM
PHPRunner General questions
O
onlline author

Hi
is possible see (ID) in on Add page
Thanks in advanced

C
cgphp 7/12/2013

Check this article http://xlinesoft.com/phprunner/docs/choose_fields.htm
Check off the corresponding field (ID) for the Add page.

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