PDA

View Full Version : php direct evaluation


DannyV
09-29-2012, 01:06 PM
I'm pretty new to php coding, so bare with me.

What I'm trying to do is create in CMS a php direct evaluation evalutaion page that lists users from a certain usergroup.

Currently I've got this as code

$test=$db->query_read(SELECT userid,username from user WHERE usergroupid=10 ORDER BY username);
$output = "testusers<br />";
while ($row = $db->fetch_array($test)) {
$output .= "$row['username']<br />";
};
$output .= "done<br />";

But I don't get any output from that.
Anybody that can push me in the right direction ?

kh99
09-29-2012, 01:16 PM
Try this:

global $db;
$test=$db->query_read("SELECT userid,username from user WHERE usergroupid=2 ORDER BY username");
$output = "testusers<br />";
while ($row = $db->fetch_array($test)) {
$output .= $row['username'] . '<br />';
};
$output .= "done<br />";

DannyV
09-29-2012, 01:23 PM
Or how simple things can be...
That worked.

Thanks !