Well I retrieve the date and time of a record like this:
$sql = $conexao->query(select data, hora from pedido);
$resultado = mysqli_fetch_object($sql);
$resultado->data;
$resultado->hora;
I need to add 5 hours and check if the date is longer than each and current time.
How can I make this calculation is verification?
I wanted to see something like this
if ((data e hora da tabela com + 5 horas) => (data e hora atual)) {
echo "o pedido já foi finalizado a mais de 5 horas";
}