Skip to content

Instantly share code, notes, and snippets.

View junta1's full-sized avatar

Rafael Mattos junta1

View GitHub Profile
<?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')";