Dear colleagues.
I am bringing two questions from the Mysql database as follows:
....
Qual sua idade? <input type="text" name="Perguntas[]" value="<?php echo $jmPerguntas->Perguntas; ?>">
Você tem o segundo grau? <input type="text" name="Perguntas[]" value="<?php echo $jmPerguntas->Perguntas; ?>">
Especifique:
<textarea name="Especifique[]" style="width: 200px; height: 80px"></textarea>
.....
And I get the results with PHP like this:
for($i = 0; $i < count($_POST['Perguntas']); $i++){
if($_POST['Perguntas'][$i] == 'Você tem o segundo grau?'){
echo "aqui";
}else{
echo "não aqui";
}
} // fim do for()
The only problem is that the snippet:
if($_POST['Perguntas'][$i] == 'Você tem o segundo grau?'){
echo "aqui";
}else{
echo "não aqui";
}
You're giving " not here ", even the question being ' Do you have high school? '.
Would anyone know to tell me what I'm doing wrong?
Thank you!