i already google and follow some step in video tutorial, but it seem all of my data in checkbox can't send into database. Any idea? i'm totally new with PHP code. If you can help, thank you so much
<?php
$sqlservername = "127.0.0.1";
$sqlusername = "root";
$sqlpassword = "";
$sqldbname ="test";
$conn = new mysqli($sqlservername, $sqlusername, $sqlpassword, $sqldbname);
if($conn->connect_error){
die("Connection fail");
}
session_start();
if(isset($_POST['li_submit'])){
$_SESSION['li_username'] = $_POST['username'];
$li_username = $_SESSION['li_username'];
}
if(isset($_POST['submit'])){
$id = $username = $password = $location = $description = $employeeNo = $telephoneNo = $designation = $place = $area = $date = $time = $taken = $management = $action = $remarks = $surveyA = "";
if(isset($_POST['username'])){
$id = uniqid($prefix='u_');
$username = $_POST['username'];
}
if(isset($_POST['password'])){
$password = $_POST['password'];
}
if(isset($_POST['location'])){
$location = $_POST['location'];
}
if(isset($_POST['description'])){
$description = $_POST['description'];
}
if(isset($_POST['employeeNo'])){
$employeeNo = $_POST['employeeNo'];
}
if(isset($_POST['telephoneNo'])){
$telephoneNo = $_POST['telephoneNo'];
}
if(isset($_POST['designation'])){
$designation = $_POST['designation'];
}
if(isset($_POST['place'])){
$place = $_POST['place'];
}
if(isset($_POST['area'])){
$area = $_POST['area'];
}
if(isset($_POST['date'])){
$date = $_POST['date'];
}
if(isset($_POST['time'])){
$time = $_POST['time'];
}
if(isset($_POST['taken'])){
$description = $_POST['taken'];
}
if(isset($_POST['management'])){
$management = $_POST['management'];
}
if(isset($_POST['action'])){
$action = $_POST['action'];
}
if(isset($_POST['remarks'])){
$remarks = $_POST['remarks'];
}
if(isset($_POST['surveyA'])){
$surveyA = $_POST['surveyA'];
$A = implode (",",$surveyA);
}
if(isset($_FILES['profile_pic'])){
$target_dir = "IMG_UPLOAD/";
$target_file = basename($_FILES['profile_pic']["name"]);
$file_type = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
$target_path = $target_dir . uniqid($prefix='img.'). "." .$file_type;
if(!move_uploaded_file($_FILES['profile_pic']['tmp_name'], $target_path)){
$target_path = "";
}
}
$sql_insert = $conn->prepare("insert into user_info(id, username, password, location, description, image_path, employeeNo, telephoneNo, designation, place, area, date, time, taken, management, action, remarks, surveyA) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)");
$sql_insert->bind_param("sssssssssssssssss", $id, $username, $password, $location, $description, $target_path, $employeeNo, $telephoneNo,$designation, $place, $area, $date, $time, $taken, $management, $action, $remarks, $surveyA);
$sql_insert->execute();
$sql_insert->close();
}
$conn->close();
?>
This is my HTML code.
<input type="checkbox" name="surveyA[]" value="Ignoring Safety Signboard / Menginkari Tanda Keselamatan"><b>Ignoring Safety Signboard</b><br>Menginkari Tanda Keselamatan</br>
<input type="checkbox" name="surveyA[]" value="Rule Violation / Melanggar Peraturan"><b>Rule Violation</b><br>Melanggar Peraturan</br>
<input type="checkbox" name="surveyA[]" value="Wrong Tool / Equipment / Machinery / Peralatan / Alatan / Mesin Salah"><b>Wrong Tool / Equipment / Machinery</b><br>Peralatan / Alatan / Mesin Salah</br>
<input type="checkbox" name="surveyA[]" value="Improper Material Handling / Kendalian Bahan Tidak Sempurna"><b>Improper Material Handling</b><br>Kendalian Bahan Tidak Sempurna</br>
<input type="checkbox" name="surveyA[]" value="Use Faulty Tools / Equipment / Vehicle / Munggunakan Peralatan / alatan / Kenderaan Rosak"><b>Use Faulty Tools / Equipment / Vehicle</b><br>Munggunakan Peralatan / alatan / Kenderaan Rosak</br>
<input type="checkbox" name="surveyA[]" value="Positive Finding/ Other. Please Specify"><b>Positive Finding/ Other. Please Specify</b>
i expected my data will send into database, so if you guys got any idea, please help me. Thank you very much