PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, March 5, 2022

[FIXED] CodeIgniter (Perfex CRM) not generating consecutive IDs for entries, how to fix that?

 March 05, 2022     codeigniter, php     No comments   

Issue

I'm using Perfex CRM which is developed by using CodeIgniter framework. I'm having an issue that the IDs of the are records not consecutive even after I delete the older records. Like the below image.

Any idea what topic I should be looking for to fix this issue?

ID Issue


Solution

For all the prefex crm table you can fins a respective files folder application > views > admin > tables

For The perfex custom modules it depends on the developer who developed it. Hope this helps you let me know if further help needed

$sr = 0;
foreach ($rResult as $aRow) {
    $row[] = $sr++;
}


Answered By - Alpesh Dalvadi
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing