I am using the code igniter framework. And I been trying to execute a stored procedure(no params) I wrote on Microsoft SQL Server 2008 from PHP but i get an error . This sto
I am facing fetch data from sql server stored procedure in codeignitor but finally resolved it.
$sync= $this->load->database('sync', TRUE); $query = $sync->query('PROCEDURE_NAME')->result_array(); echo ''; print_r($query);
'; print_r($query);