"success", "data" => $rowsText]); } } } } else { $file = './viewCount/entries.txt'; // Path to your .txt file if (file_exists($file)) { $lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); if ($lines) { foreach ($lines as $line) { echo "
" . htmlspecialchars($line) . "
"; } } else { echo "
No entries found.
"; } } else { echo "
File not found: " . htmlspecialchars($file) . "
"; } } ?>