![]() |
Two procedures continuesly not working - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Two procedures continuesly not working (/showthread.php?tid=67716) |
Two procedures continuesly not working - Vijay Verma - 03-31-2017 If I'm executing only 1 procedure in the model - all works fine, but 2 returns nothing. If I use simple query(not procedure) in first part, all is working fine For example: Code: <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); RE: Two procedures continuesly not working - InsiteFX - 03-31-2017 Try adding this: PHP Code: $query->free_result(); This usually happens because the first query has not finished running. |