Hello ,
This command works :
$requete = "SELECT date,bloctype_1,grattype_1,typech_1, … FROM occup " ;
But this not ???
$requete = "INSERT INTO occup (date,bloctype_1,grattype_1,typech_1, … ";
sc_exec_sql($requete);
When I’m looking the sql command in run, the word “oocup” was deleted from my code" , this is the code in form_…_apl.php
$requete = “INSERT INTO$this->occup (date,bloctype_1,grattype_1,typech_1,…”;
Anybody know what happen ???
Thanks