25.12.2014, 21:18
На файлах как то так:
Помогите на MySQL!
PHP код:
new
a_count,
File: a_file;
PHP код:
CMD:test(playerid, params[])
{
new
str[56],
string[512];
a_file = fopen("test.txt", io_read);
for(new i = 0; i < 10; i++)
{
fread(a_file, str);
if(str[0] == '\0')
{
break;
}
a_count++;
strcat(string, str),
strcat(string, "\n");
}
ShowPlayerDialog(playerid, 500, DIALOG_STYLE_LIST, "Тест", string, "ok", "");
}
PHP код:
DLG(500)
{
if(response)
{
if(a_count > 8)
{
new
str[56],
string[512];
for(new i = 0; i < 10; i++)
{
fread(a_file, str);
if(str[0] == '\0')
{
break;
}
a_count++;
strcat(string, str),
strcat(string, "\n");
}
ShowPlayerDialog(playerid, 501, DIALOG_STYLE_LIST, "Тест", string, "ok", "");
}
}
else
fclose(a_file);
}
PHP код:
DLG(501)
{
if(response)
{
if(a_count > 15)
{
new
str[56],
string[512];
for(new i = 0; i < 10; i++)
{
fread(a_file, str);
if(str[0] == '\0')
{
break;
}
a_count++;
strcat(string, str),
strcat(string, "\n");
}
ShowPlayerDialog(playerid, 502, DIALOG_STYLE_LIST, "Тест", string, "ok", "");
fclose(a_file);
}
}
else
fclose(a_file);
}