Files
whatsapp/scripts/show_recent_conversations.php
2026-01-21 10:57:02 -05:00

10 lines
307 B
PHP

<?php
require_once __DIR__ . '/../config/config.php';
try {
$db = Database::getInstance();
$rows = $db->fetchAll('SELECT * FROM conversations ORDER BY created_at DESC LIMIT 5');
echo json_encode($rows, JSON_PRETTY_PRINT);
} catch (Throwable $t) {
echo "Error: " . $t->getMessage() . "\n";
}