Skip to content

Instantly share code, notes, and snippets.

@alexsoin
Created August 29, 2018 09:27
Show Gist options
  • Select an option

  • Save alexsoin/c52a948605f0b8bd37b200c41096b32d to your computer and use it in GitHub Desktop.

Select an option

Save alexsoin/c52a948605f0b8bd37b200c41096b32d to your computer and use it in GitHub Desktop.
Вывод списка пользователей сайта modx
<?php
$q = $modx->newQuery('modUser');
$q->innerJoin('modUserProfile', 'Profile');
$q->limit(0);
$q->select(array(
"Profile.*",
"modUser.*",
));
$s = $q->prepare();
$s->execute();
while($row = $s->fetch(PDO::FETCH_ASSOC)){
print "<br>". $row['username']." ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment