|
colonelwog 2044
| Posté : 24-11-2011 10:42
je cherche à sortir les user qui font parti d'un groupe via une requête sql :
$sql1=mysql_query('SELECT * FROM '.$NPDS_Prefix.'u sers where group10');
while($req1 = mysql _fetch_object($sql1))
{
echo'<option&n bsp;value="'.$req1->uname.'">'.stripslashes($req1->uname).'</option >';
}
|  Profil E-mail www
|
|
colonelwog 2044
| Posté : 24-11-2011 11:27
j'ai tenter ceci :
$sql1=mysql_query('SELECT&nbs p;* FROM '.$NPDS_Prefix.'users,'.$NPDS_Prefix.'users_status wher e users.uid = users_status.uid AND groupe!=10 ');
while($req1 = mysql _fetch_object($sql1))
{
echo'<option&n bsp;value="'.$req1->uname.'">'.stripslashes($req1->uname).'</option >';
}
mais marche pas ...
comme indiqué ci-dessus mon groupe et identifié dans la base en id "10" dans user_extend.
j'essaye de faire correspondre la table user avec user extend pour avoir les uname correspondants au groupe 10 seulement . |  Profil E-mail www
|
|
colonelwog 2044
| |
developpeur 24581
| Posté : 24-11-2011 20:28
je sais pas si ya pas une fonction qui fait cela dans le mainfile |  Profil E-mail www
|
|
colonelwog 2044
| Posté : 24-11-2011 20:33
ah ! dans ce cas cela serai peut être plus propre ,bon pour l'instant ça marche nickel donc pas de soucis ... |  Profil E-mail www
|
|