<?php

define('DRUPAL_ROOT', getcwd());

include_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);

$result = db_query('SELECT * from {users}');
foreach ($result as $record) {
  /* ToDo: call drupal_render? or theme and create a table */
  print $record->name . PHP_EOL;
}