Hello, you are not giving any errors, but WAMP
does not save the information.
Code of cadastro_db.php
:
<?
include("conection.php");
$nome = $_POST['nome'];
$email = $_POST['email'];
$idade = $_POST['idade'];
$cidade = $_POST['cidade'];
$login = $_POST['login'];
$senha = $_POST['senha'];
$sql = mysql_query("INSERT INTO usuarios(nome, email, idade, cidade, login, senha, foto) value('$nome', '$email', '$idade', '$cidade', '$login', '$senha', '$foto')");
header("Location: index.php");
?>
Code of conection.php
:
<?
$db = mysqli_connect("localhost", "root", "");
mysqli_select_db($db, "login_senha");
?>
Thank you in advance.