I have table in database that has 3 column, the first column id(PK), second column nameOfPerson and third column parent(foriegn key). When I entered name into text field and choose parent from drop down I want to insert into the DB the name under nameOfPerson and parent under parent. Why in my code when I clicked submit nothing happens?
This is my table
id nameOfPerson parent
3 John NULL
4 Michel 3
5 Husam 4
6 Khalaf 5
7 Mark 5
----------------------------
this is my function to get the who can be parent
public function displayParent(){
//$statment = $this->db->prepare("SELECT DISTINCT person.nameOfPerson, b.nameOfPerson as name FROM person LEFT JOIN person b ON (person.parent = b.id)");
$statment = $this->db->prepare("SELECT id, nameOfPerson FROM person");
$statment->execute();
$result = $statment->fetchAll();
foreach($result as $output){
echo "<option>" .$output['nameOfPerson']."</option>";
}
}
this is my function to insert data into DB
public function enterChild(){
$statment = $this->db->prepare("INSERT INTO person (nameOfPerson, parent) VALUES(:name, :parent)");
$statment->bindParam(':name',$_POST['name']);
$statment->bindParam(':parent',$_POST['parent']);
$statment->execute();
$result = $statment->rowCount();
if($result == "1")
{
$message = '<label>successfully</label>';
}
else
{
$message = '<label>Wrong</label>';
}
echo $message;
}
and this is mu index code
<?php include_once('Family.php');
$object = new Family();
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Family Tree</title>
</head>
<body>
<form method="post">
Child Name: <input type ='text' name ='name' placeholder="Enter name here">
<select name="parent" id="names" onchange="getSelectValue()">
<option>--Select Parent--</option>
<?php echo $object->displayParent() ?>
</select>
<br>
<input type="submit" name="submit" value="Enter">
</form>
<script>
//Get selected nema
function getSelectValue(){
var selectedValue = document.getElementById("names").value;
console.log(selectedValue);
}
</script>
<?php
$object->GetFamilyTree();
if(isset($_POST['submit'])){
$name= $_POST["name"];
$parent= $_POST["parent"];
$object->enterChild();
}
?>
</body>
</html>