I'm having trouble putting a message to say: Data entered successfully and then send it to another page.
<?php
include 'ligacao_pdo.php';
$condutor = $_POST['condutor'];
$carro = $_POST['carro'];
$matricula = $_POST['matricula'];
if (!$ligacao->query("INSERT INTO condutor (condutor, carro, matricula) VALUES ('$condutor', '$carro', '$matricula')"))
{
echo"SUCESSO";
header("location: add.php");
}