13.03.2017, 07:14
(
Last edited by X337; 13/03/2017 at 10:50 AM.
)
Here's an example to loop and get data each rows:
Code:
mysql_tquery(g_Sql, "SELECT * FROM tree", "OnLoadingTree"); public OnLoadingTree() { new rows; cache_get_row_count(rows); for(new i; i < rows; i++) { // loop each rows // use cache_get_value_* to get field data } }