require_once 'config.php';
$pageTitle = 'ListMyInfo.com – Connect with Customers Across India | Free Business Directory';
$metaDescription = 'List your business on ListMyInfo.com and connect with customers across India. Free business listings with full contact details, professional branding, and nationwide reach for local SEO.';
$popularCategories = [];
try {
$stmtPop = $pdo->query("
SELECT category, COUNT(*) AS total
FROM companies
WHERE category IS NOT NULL AND category <> ''
GROUP BY category
ORDER BY total DESC, category ASC
LIMIT 8
");
$popularCategories = $stmtPop->fetchAll();
} catch (Exception $e) {}
$latestCompanies = [];