Loading...
 
Skip to main content

Galaxia Workflow Engine


Re: problem with inserting data in two tables using one form in workflow

Brazil

Why are you trying to insert data like that? The usual way to pass parameters in Galaxia is like this:

$consulta = "INSERT INTO IMP (numero, ano, titulo, etp_1_atp, etp_1_ano_atp, etp_1_nta, dt_rec_etp_1, dt_etg_etp_1, dt_rec_etp_2)";
$consulta .= "VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)";

$tikilib->query($consulta, array($numero, $ano_imp, $titulo, $atp, $ano_atp, $notas, $par_dt_rec, $par_dt_etg, $par_rec_prx));

Georger

There are no comments at this time.