Created
July 17, 2016 13:43
-
-
Save joffilyfe/54fbbbc5c2614d26be660e9e48b48676 to your computer and use it in GitHub Desktop.
Exemplo para criação de um formulário dinâmico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$inputs = array( | |
"nome" => "Joffily", | |
"idade" => "18", | |
"musica" => "Gibe my monei" | |
); | |
?> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<form action="/" method="GET"> | |
<?php | |
foreach ($inputs as $chave => $valor) { | |
echo "<label>$chave</label>"; | |
echo "<input type='text' name='$chave' value='$valor' /></br>"; | |
} | |
?> | |
<button>Enviar</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment