0
을 작동하지 않는, 오류가 울부 짖는 소리를 보여주는하는 것은 이메일 주소가 이미 존재하는 경우 u를 확인하는 방법을 설명 할 수있는 PHP 스크립트PHP는 mysqli 삽입 내가 MySQL의에 데이터를 삽입하려고하지만, 작동하지하고
$mysqli = new mysqli('localhost','root','','realestate');
if($mysqli->connect_error){
printf("can not connect database %s\n",$mysqli->connect_error);
exit();
}
if (isset($_POST['submit'])){
$a_name=$_POST['a_name'];
$a_number=$_POST['a_number'];
$email=$_POST['email'];
$password=$_POST['password'];
$target_dir="uploads/";
$target_file=$target_dir . basename($_FILES["a_image"]["name"]);
$temp_file=$_FILES["a_image"]["name"];
move_uploaded_file($_FILES["a_image"]["tmp_name"], $target_file);
$query="INSERT INTO agent (a_name,a_number,email,password,a_image)
VALUES ('$a_name',$a_number,'$email','$password','$temp_file')";
$insert = $mysqli->query($query);
입니다 데이터베이스에? –