2
Good morning.
I did extensive research before asking, and I couldn’t find the answer.
$row['data_saida'] = "2019-06-20";
$row['hora_saida'] = "08:35:02";
These two strings come from the database, returning the separate date and time (as shown above), but would like to generate a prediction based on another string, which returns from the database. That is to say:
$row['data_saida'] = "2019-06-20";
$row['hora_saida'] = "08:35:02";
$row['tempo_viagem'] = "02:30:02";
I would add 02:30:02 with 2019-06-20 08:35:02, to get the arrival forecast.
Thank you! Helped a lot. : D
– user93488