| Current Path : C:/xampp/htdocs/todolist/class/ |
| Current File : C:/xampp/htdocs/todolist/class/delete.php |
<?php
class delete extends config{
public $id;
public function __construct($id){
$this->id= $id;
}
public function deleteTask(){
$con = $this->con();
$sql = "DELETE FROM `tbl_todolist` WHERE `id` =$this->id";
$data = $con->prepare($sql);
if($data->execute()){
return true;
}else{
return false;
}
}
}
?>