PHP код:
new Resultado[2000], str[200];
if(rows)
{
strcat(Resultado, "Player\tRelato\tHorario\n");
for(new i = 0; i < rows; i++ )
{
cache_get_field_content(i,"Jogador",NomePlayer, mysql);
cache_get_field_content(i,"Relato",Relatos, mysql);
cache_get_field_content(i,"Hora", Horario, mysql);
cache_get_field_content(i,"Minutos", Minuto, mysql);
cache_get_field_content(i,"Segundos", Segundo, mysql);
format(str,sizeof(str),"%s\t%s\t%d:%d:%d\n" NomePlayer, Relatos, strval(Horario), strval(Minuto), strval(Segundo));
strcat(Resultado, str);
}
ShowPlayerDialog(playerid,666,DIALOG_STYLE_TABLIST_HEADERS,"Relatos",Resultado,"Ok","Sair");
strdel(Resultado, 0, sizeof(Resultado));
}
else SendClientMessage(playerid, -1, "Sem relatos.");