0
I would like to know if it is possible and how I can link this html in php, adding the count of how many years and how many months a person has
I also wanted a php function that shows the name when sent
I have this function for the name
<?php
if(isset($_post['enviar])){
$nome= $_POST['nome'];
echo *Seu nome é $nome !*;
}
?>
HTML:
<label for="input">Qual seu nome? </label>
<br/> <br/>
<input type="text" id=valor>
<input type="submit" onclick="capturar()" value="Enviar"> <br/>
<p id="valorDigitado"></p>
<label for="input">Qual a data do seu nascimento? </label> <br/> <br/>
<input type="number" id="date" placeholder="data"> <br/>
<input type="number" id="month" placeholder="mês"> <br/>
<input type="number" id="year" placeholder="ano"> <br/>
<br/> <br/>
<button id="calc-btn">Calcular Idade</button>
<p id="show-age"></p>
PHP if the date entered is 09/01/1997
<?php
//Data atual
$dia = date (‘d’);
$mes = date (‘m’);
$ano = date (‘Y’);
//Data do aniversário
$dianasc = (’09′);
$mesnasc = (’01′);
$anonasc = (’1997′);
//Calculando sua idade
$idade = $ano - $anonasc;
if ($mes < $mesnasc){
$idade-;
echo “$idade”;
}
elseif ($mes == $mesnasc and $dia <= $dianasc) {
$idade-;
echo “$idade”;
}
else{
echo “$idade”;
}
?>
Why not do everything in javascript? Vc know when and pq use one or the other?
– tvdias
This answers your question? Show age in years in php
– Ricardo Pontual
tvdias, need to do in php :(
– ana paula
But the answers to the other question are in PHP, no?
– Wallace Maxters