Washington Sampaio 0 Denunciar post Postado Maio 23, 2018 <?php $conecta = mysqli_connect("localhost", "xxxxxxx_xxxxxx", "00000000000", "my_store"); or die ('Error connecting to the database. '); $first_name = $_POST['firstname']; $last_name = $_POST['lastname']; $email = $_POST['email']; $query ="INSERT INTO mailing_list (first_name, last_name, email) " . "VALUES ('$first_name', '$last_name', '$email')"; mysqli_query($dbc, &query) or die ('Error querying the database'); echo 'Customer added. '. '' . '<a href="addemail.html">Click here to return to the main page.. </a>'; mysqli_close($dbc); ?> *ALGUÉM PODE ME AJUDAR A DESCOBRIR ONDE ETÁ O ERRO NESTE CÓDIGO?* Já quebrei a cabeça aqui, mais não consegui resolver. Quem descobrir, me dá um alô aqui no e-mail...... was.sampiao@hotmail.com Compartilhar este post Link para o post Compartilhar em outros sites
washalbano 54 Denunciar post Postado Maio 24, 2018 Olá! O erro está nos or die? Já que eram usados com mysql_* Compartilhar este post Link para o post Compartilhar em outros sites
Guilherme Luiz 41 Denunciar post Postado Maio 24, 2018 ficarias mais facil você incluir um mysqli_error e nos indicar qual o erro exposto em tela. $query ="INSERT INTO mailing_list (first_name, last_name, email) " . "VALUES ('$first_name', '$last_name', '$email')"; Pra que concatenar? $conecta = mysqli_connect("localhost", "xxxxxxx_xxxxxx", "00000000000", "my_store") or die ('Error connecting to the database. '); ... mysqli_query($dbc, &query) or die ('Error querying the database'); O link da sua conexão está na variavel $conecta e na query você chama $dbc. Por que? Só colocar o código (ainda mais sem a formação do <> ) e esperar que as pessoas adivinhem qual o erro e ainda querer a resposta por email... dificil!p Compartilhar este post Link para o post Compartilhar em outros sites