1
Joomsites / Re: A voi sembra joomla??
« il: 13 Feb 2009, 03:53:36 »
link...
Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.
// --- INIZIO CODICE QUERY ---
$limitstart= 0;
$limit =10;
$queryprova= "SELECT u.* ".
"FROM #__users AS u ".
"WHERE (usertype NOT LIKE '%administrator%') ";
$database->setQuery($queryprova);
$utenti = $database->loadObjectList();
require_once("includes/pageNavigation.php");
$database->setQuery($queryprova);
$pageNav = new mosPageNav($utenti, $limitstart, $limit);
// --- STAMPA TABELLA ----
if($utenti == null){
echo "Errore".
$database->getErrorNum().
": ".
$database->getErrorMsg();
}
else {
echo"<table width='450'>\n".
"<th colspan='3'><br>---- TABELLA ----</th>".
"<tr>".
"<th width='62'>N°</th>".
"<th width='83'>NICK</th>".
"</tr>\n";
foreach($utenti as $utente){
echo"<tr>".
"<td>".$utente->id. "</td>".
"<td>".$utente->username. "</td>".
"</tr>\n";
} //chiusura del ciclo
echo "<th colspan='3'><br> FINE TABELLA </th>".
"</table>\n";
} //chiusura dell if
// ---- FINE STAMPA TABELLA ----
Guardate che bel sito che ho trovato... è in multilingua "vera"
www.johninjapan.com
sapete se esiste qualche modifica o un altro modulo che permetta ad un utente, di scegliere da un menù a discesa con chi parlare? ad esempio Operatore1, operatore2 ecc.., Ho visto che nella configurazione principale si può aggiungere solo un ID Skype
|