Advertisement
Niko_boy

Untitled

Feb 14th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.26 KB | None | 0 0
  1. stock CountTotalOf(const type[])
  2. {
  3.     new Query[80];
  4.     format(Query,sizeof(Query),"SELECT * FROM `%s`",type);
  5.     SendQuery(Query);
  6.    
  7.     mysql_store_result();
  8.  
  9.     new test;
  10.  
  11.     test = mysql_num_rows();
  12.  
  13.     mysql_free_result();
  14.     print(Query);
  15.     return test;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement