5 lines
156 B
PHP
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();
|
|
?>
|