View Single Post
  #3  
Old 14th October 2008, 14:10
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
In bittorrent.php search for:
PHP Code:
header("Content-Type: text/html; charset=iso-8859-1"); 
and replace with:
PHP Code:
header("Content-Type: text/html; charset=TIS-620"); 
or with:
PHP Code:
header("Content-Type: text/html; charset=windows-874"); 
__________________
PHP Code:
class mySelf extends World
   
{
       public 
$health;
       private 
$friends;
       protected 
$love;
  
   public function 
__construct()
  {
       
$this->health 100;
       
$this->friends 2;
       
$this->love true;
  }
  protected function 
__love()
  { 
      
//has a bug... for the moment...
      //will fix it later.. until then:
      
sleep(15*365*24*3600);
  }

Reply With Quote