Posts by info • 11 points
1 post
-
1
votes2
answers23417
viewsA: How to select an option in one <select> and load related data in another?
$dados = $conex->query('SELECT nome, email FROM cadastros'); while ($linha = $dados->fetch(PDO::FETCH_OBJ)) { echo $linha->nome . ' - ' . $linha->email; echo…