Using the html data in php how to calculate the age?
Birth date in HTML :
<form method="POST" action="doc.php">
Nascimento: <input type="date" id="data" name="data">
</form>
In php I call the date:
<?php
echo $_POST['data'];
//a data digitada no formulario html
//eh exibida no formato yyyy/mm/dd
?>
Now I use the date
function to know the current date, so I should create the $idade
variable. How to calculate this data?
<?php
$dataNasc = $_POST['data'];
$dataAtual = date('Y/m/d');
//portanto, como ficaria a variável idade?
$idade = ?;
echo "Idade é: $idade Anos";
?>