$row = 'title';
$key = 'sam';
$sort = 'id';
$type = 'asc';
$result = $pdo->prepare("SELECT * FROM table_products WHERE :row LIKE :key ORDER BY :sort :type ");
$result->bindValue(':row', $row, PDO::PARAM_STR);
$result->bindValue(':key', $key, PDO::PARAM_STR);
$result->bindValue(':sort', $sort,PDO::PARAM_STR);
$result->bindValue(':type', $type,PDO::PARAM_STR);
$result->execute();