function carrega_usuarios_chat() { // globals global $idioma; // limit $limit = limit_query(); // tabela $tabela = TABELA_AMIZADE; // id de usuario $idusuario = retorne_idusuario_request(); // query $query = "select *from {$tabela} where idamigo='{$idusuario}' order by id desc {$limit};"; // comando $comando = comando_executa($query); // numero de linhas $numero_linhas = retorne_numero_linhas_comando($comando); // contador $contador = 0; // cria lista de usuarios for ($contador == $contador; $contador <= $numero_linhas; $contador++) { // separa dados $dados = mysql_fetch_array($comando, MYSQL_ASSOC); // codigo html $codigo_html .= constroe_usuario_chat($dados); } // retorno return $codigo_html; }
function carrega_usuarios_chat() { global $idioma; $limit = limit_query(); $tabela = TABELA_AMIZADE; $idusuario = retorne_idusuario_request(); $query = "select *from {$tabela} where idamigo='{$idusuario}' order by id desc {$limit};"; $comando = comando_executa($query); $numero_linhas = retorne_numero_linhas_comando($comando); $contador = 0; for ($contador == $contador; $contador <= $numero_linhas; $contador++) { $dados = mysql_fetch_array($comando, MYSQL_ASSOC); $codigo_html .= constroe_usuario_chat($dados); } return $codigo_html; }