CREATE TABLE mobile (
  id int(20) NOT NULL auto_increment,
  name text NOT NULL,
  img text NOT NULL,
  url text NOT NULL,
  count text NOT NULL,
  cat_id int(11) NOT NULL default '0',
  PRIMARY KEY  (id)
) TYPE=MyISAM;
CREATE TABLE mobile_cat (
  id int(20) NOT NULL auto_increment,
  n_name text NOT NULL,
  n_img text NOT NULL,
  count text NOT NULL,
  counter bigint(11) NOT NULL default '0',
  PRIMARY KEY  (id)
) TYPE=MyISAM;