Answers for "how to see last query in codeigniter after ajax call"

PHP
1

codeigniter get last query

$this->db->last_query();

Returns the last query that was run (the query string, not the result). Example:
$str = $this->db->last_query();

// Produces: SELECT * FROM sometable....
Posted by: Guest on October-19-2020

Code answers related to "how to see last query in codeigniter after ajax call"

Browse Popular Code Answers by Language