(fichier traitement1.php)
";
$ordre = ociparse($connection, $texte);
ociexecute($ordre);
ocifetchinto($ordre, $ligne);
$idc = $ligne[0];
$texte =
"insert into client(idc, nom, age) values(".$idc.",'".$nom."',".$age.")";
echo "(debug : ".$texte.")
";
$ordre = ociparse($connection, $texte);
ociexecute($ordre);
ocilogoff($connection);
echo "identifiant client cree : ".$idc;
?>