Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE whois_e (
       id_num int(11) DEFAULT '0' NOT NULL,
    ...
       
    );
    
  2. or download this
    
    create index whosis_1 on whois_e(id_num);
    ...
    create index whosis_1 on whois_e(url);
    create index whosis_1 on whois_e(sent);
    
  3. or download this
    select * from whois_e
    where email = '$email'
    and url = '$url'
    and sent = '1'
    
  4. or download this
    
    create index whosis_2 on whois_e(email, url, sent);
    
  5. or download this
    CREATE TABLE whois_e (
       id_num int(11) unsigned DEFAULT '0' NOT NULL auto_increment primary
    + key,
    ...
       
    );
    
  6. or download this
    INSERT into whois_e VALUES(...), (...),(...), (...).....;