سلام
وقت بخیر ، به هنگام کلیک بر روی فولدر مورد نظر تسکهای مربوط به آن فولدر نشان داده نمیشود!
function getTasks(){
global $pdo;
$folder = $_GET['folder_id'] ?? null;
$addCondition = '';
if(isset($folder) and is_numeric($folder)){
$addCondition = "and folder_id=$folder";
}
$current_user_id = getCurrentUserId();
$sql = "SELECT * FROM tasks WHERE user_id = $current_user_id $addCondition";
$stmt = $pdo->prepare($sql);
$stmt->execute();
$records = $stmt->fetchAll(PDO::FETCH_OBJ);
return $records;
}