SA-MP Forums Archive
MySQL - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Русский/Russian (https://sampforum.blast.hk/forumdisplay.php?fid=32)
+---- Thread: MySQL (/showthread.php?tid=409832)



MySQL - pozitiv4eg - 23.01.2013

PHP код:
        new x[25];
        new 
y[25];
        new 
z[25];
        
cache_get_row(h0temp);
        
format(x,sizeof(x),"%f",temp);
          
cache_get_row(h1temp);
        
format(y,sizeof(y),"%f",temp);
          
cache_get_row(h2temp);
        
format(z,sizeof(z),"%f",temp);
        
HouseInfo[h][hEntrancex] = x;
        
HouseInfo[h][hEntrancey] = y;
        
HouseInfo[h][hEntrancez] = z
Вот чесно туплю и не могу сообразить как вытащить значения и подставить их в
Quote:

HouseInfo[h][hEntrancex]
HouseInfo[h][hEntrancey]
HouseInfo[h][hEntrancez]




Re: MySQL - Alexander_Petrov - 23.01.2013

pawn Код:
new x[25];
new y[25];
new z[25];
cache_get_row(h, 0, temp);
format(x,sizeof(x),"%f",temp);
cache_get_row(h, 1, temp);
format(y,sizeof(y),"%f",temp);
cache_get_row(h, 2, temp);
format(z,sizeof(z),"%f",temp);
HouseInfo[h][hEntrancex] = floatstr(x);
HouseInfo[h][hEntrancey] = floatstr(y);
HouseInfo[h][hEntrancez] = floatstr(z);



Re: MySQL - s0up - 23.01.2013

deleted


Re: MySQL - pozitiv4eg - 23.01.2013

спасибо


Re: MySQL - Stepashka - 23.01.2013

Ну вы и извращенцы.
pawn Код:
cache_get_row(h, 0, temp);
HouseInfo[h][hEntrancex] = floatstr(temp);
cache_get_row(h, 1, temp);
HouseInfo[h][hEntrancey] = floatstr(temp);
cache_get_row(h, 2, temp);
HouseInfo[h][hEntrancez] = floatstr(temp);