View gist:55b76a286d43c808eb50
This file contains 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 | |
include "../banco_teste/conecta.php"; | |
$nome = $_REQUEST["nome"]; | |
$sexo = $_REQUEST["sexo"]; | |
$textoarea = $_REQUEST["textoarea"]; | |
$moradia = $_REQUEST["moradia"]; | |
$transporte = $_REQUEST["transporte"]; | |
$sqlinsert = "INSERT INTO formulario (`nome`, `sexo`, `textoarea`, `moradia`, `transporte`) VALUES ('$nome','$sexo','$textoarea','$moradia','$transporte')"; |