CodeIgniter Forums
Insert after condition - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Insert after condition (/showthread.php?tid=60119)



Insert after condition - El Forum - 01-19-2014

[eluser]maru[/eluser]
Hello!
I need to compare two values in a table: cliente and nro_cuota, if both exist I don't want to insert it.

Here is my code

Code:
$crud = new grocery_CRUD();

$crud->set_theme('datatables');

$crud->set_table('cobranzas');

$crud->set_subject('Cobranzas');

$crud->set_language('spanish');

$crud->required_fields(
'id',
'cobrador',
'cliente',
'nro_cuota'
);

$crud->columns(
//'id',
'cobrador',
'cliente',
'nro_cuota'
);

$crud->set_relation('cobrador', 'cobradores', 'apellido_nombre');
$crud->set_relation('cliente', 'clientes', 'apellido_nombre');

$output = $crud->render();

$this->load->view('cobranzas/cobranzas_v', $output);

}catch(Exception $e){

show_error($e->getMessage().' --- '.$e->getTraceAsString());
}
}


and I wrote a model, I`m not sure if this is the right way, but I don't know how I must call it


Code:
class Compare_values_model extends CI_Model
{

public function compare($id)
{

$this->db->select('"SELECT * FROM `cobranzas` WHERE `cliente` = '$cliente' AND `nro_cuota` = '$nro_cuota'"');

if ($query->num_rows() > 0) {
return true;
} else {
return false;
}

}

}

In pseudo code should be something like this"
if (cliente and nrocuota exists)
dont insert
else
insert

But I don't know how to do this in my code, so hope can help me I couldn't find some examples on internet to learn more, thanks in advance.