0
I am in trouble. I normally insert in the table "equipment" of my code and normally populate the mysql BD.
However, the table "dell" is empty, even passing the reference of the ID of the table "equipment". By phpmyadmin is all working normally, if I insert by there works, but I have to do via PHP on mysqli.
"equipment" is independent and "dell" is a dependent table with Fk_item which is auto_increment
Helping!!!
<?php
//tabela dell
$fabricante=$_POST['fabricante'];
$modelo=$_POST['modelo'];
$tipo=$_POST['tipo'];
$data=date("Y/m/d");
$url=$_POST['url'];
$serie=$_POST['serie'];
$proprietario=$_POST['proprietario'];
$origem=$_POST['origem'];
$venc_garantia=date("Y/m/d");
$tipo_instalacao=$_POST['tipo_instalacao'];
$configuracao=$_POST['configuracao'];
$uname_a=$_POST['uname_a'];
$instalacao=$_POST['instalacao'];
$status=$_POST['status'];
$servicos=$_POST['servicos'];
//tabela equipamento
$descricao=$_POST['descricao'];
$quantidade=$_POST['quantidade'];
$tombamento=$_POST['tombamento'];
$local=$_POST['local'];
//tabela equipamento
$query = "INSERT INTO equipamento (item, tipo, descricao, quantidade, tombamento, local, status)
VALUES(NULL, '$tipo', '$descricao', '$quantidade', '$tombamento', '$local','$status')";
$mysqli->query($query);
printf ("Registro de id %d.\n", $mysqli->insert_id);
//tabela dell
$query2 = "INSERT INTO dell (id_item, fabricante, modelo, tipo, data, url, serie, proprietario, origem, venc_garantia, tipo_instalacao,
configuracao, uname_a, instalacao, servicos, tombamento) VALUES(LAST_INSERT_ID(), '$fabricante', '$modelo',
'$tipo', '$data', '$url', '$serie', '$proprietario', '$origem', '$venc_garantia', '$tipo_instalacao', '$configuracao',
'$uname_a', '$instalacao', '$status', '$servicos', '$tombamento')";
$mysqli->query($query2);
printf("Novo Registro foi inserido com sucesso\n");
printf ("Registro de id %d.\n", $mysqli->insert_id);
?>
I will test Aki and Jaja return the result.
– DarkJontex
gave yes. I placed positive in his comment, but I think the site did not register. Vlw even the help and support. They really helped me. Can you suggest me some good program so I don’t make these mistakes? I’m using Notepad++ to make these codes :/
– DarkJontex