getnamingo-registry/automation/helpers.php
2023-08-15 11:45:34 +03:00

8 lines
No EOL
204 B
PHP

<?php
function fetchCount($pdo, $tableName) {
$stmt = $pdo->prepare("SELECT count(id) AS count FROM {$tableName};");
$stmt->execute();
$result = $stmt->fetch();
return $result['count'];
}