21.08.2018, 18:17
How can I make tax business like 1000 x all created biz which means like 1k per biz
mysql_tquery(g_SQL, "SELECT * FROM `business`", "Business_Load");
public Business_Load()
{
for(new i, j = cache_num_rows(); i != j; i++)
{
if(i < MAX_BUSINESSES)
{
//Your business loading code
//Set your tax code here
}
}
return 1;
}