Created
August 29, 2018 09:27
-
-
Save alexsoin/c52a948605f0b8bd37b200c41096b32d to your computer and use it in GitHub Desktop.
Вывод списка пользователей сайта modx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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