Recent content by wacked

  1. W

    bulk bit.ly script

    Make a RegExp that gets all URLs into an array. Then create an bit.ly URL for every URL. if(isset($_POST['UseBitLy']) && $_POST['UseBitLy'] == 'DoIt') { $BitLyData=explode(':',$_POST['BitLyAccount'])...
  2. W

    URL rotator script

  3. W

    Redirect Visitors Based On Country?

    GeoIP. Upload all files in the package. $RedirectSites = array('US' => 'SITE1', 'UK' => 'SITE2', 'PL' => 'SITE3'); $Country = GetCountryCodeByIP($_SERVER['REMOTE_ADDR']); if(isset($RedirectSites[$Country])) { header('Location: '. $RedirectSites[$Country]); exit; } function...
  4. W

    Tutorial: How to write 'Hello World' using Win32 api

    Also you should use UNICODE. #define UNICODE, #DEFINE _UNICODE, TCHAR szCoolString[]=TEXT("Cool String. w00t w00t");
  5. W

    [FB]Like button without iframe.

    only the design? -> <img src="URL_HERE"></img> or the same functionalty? -> XMLHTTP
  6. W

    What Is A Shezblog?

    no. there just building all there traffic from twitter.
  7. W

    Simple Wordpress Commentspammer

    Sorry forget the table details CREATE TABLE SPAMBLOGS ( ID INTEGER AUTO_INCREMENT, URL VARCHAR(256) NOT NULL, COMMENTS INTEGER NOT NULL, ADDED DATETIME NOT NULL, UNIQUE(URL), PRIMARY KEY(ID) );
  8. W

    Free Web Hosting no banner or ads, php, mysql

    obfuscate them. g00gle.comAAAAAAAAAA also there is a little trick. on some free hosts you can just add <? die(); ?> to the end of an .php file and no ad will appear.
  9. W

    Free Autoblog hosting?

    i use 000webhost
  10. W

    Warning about my recent wordpress hacked experience

    or got your password stolen.
  11. W

    Simple Wordpress Commentspammer

  12. W

    I need a PHP spam script

Back
Top