// -------------------------------
$stmt = $related_db->prepare("
SELECT content_id, original_title, ogp_image, updated_at
FROM ai_articles
WHERE content_id != :content_id
AND content_id != ''
AND content_id NOT LIKE 'd_%'
AND content_id NOT LIKE 'h_%'
AND content_id NOT LIKE 'n_%'
AND ogp_image != ''
AND ogp_image NOT LIKE '%nowprinting%'
AND ogp_image NOT LIKE '%noimage%'
ORDER BY datetime(updated_at) DESC
LIMIT 40
");
$stmt->execute([':content_id' => $related_current_id]);
$related_items_new = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo '';
}
} catch (Throwable $e) {
echo '';
$related_items_actress = [];
$related_items_genre = [];
$related_items_new = [];
}
?>
Warning: Undefined variable $related_items_actress in /home/wp102503/shiruto-jyoyu.com/public_html/entry.php on line 340
Warning: Undefined variable $related_items_genre in /home/wp102503/shiruto-jyoyu.com/public_html/entry.php on line 341
Warning: Undefined variable $related_items_new in /home/wp102503/shiruto-jyoyu.com/public_html/entry.php on line 342