Cat-api-open/includes/pic-table-others.php
2025-07-12 13:33:32 +08:00

5 lines
156 B
PHP

<?php
$stmt = $pdo->prepare("SELECT {$find_field} FROM images WHERE theme = :theme");
$stmt->bindParam(':theme', $api, PDO::PARAM_STR);
$stmt->execute();
?>