29.11.2012, 15:43
Hi,
If am loading a something, can i write anything to database:
It's it work?
If am loading a something, can i write anything to database:
Код:
mysql_query( "SELECT Name FROM players ORDER BY XP" ); mysql_store_result( ); new NAMESAVE[ MAX_PLAYER_NAME ]; new STRINGSAVE[ 50 ]; new STRING2[ 128 ]; while( mysql_fetch_row_format( STRINGSAVE ) ) { sscanf(STRINGSAVE,"p<|>s[24]",NAMESAVE ); format(STRING2,128,"UPDATE players SET Playtime='0' WHERE Name = '%s'", NAMESAVE ); mysql_query(STRING2); } mysql_free_result( );