Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Roonaan

Roonaan

Roonaan has asked 0 questions and find answers to 1 problems.

Stats

19
EtPoint
5
Vote count
0
questions
1
answers

About

<?php
class Roonaan
  extends
   Person
  implements
    IMarried,
    IFather,
    IWebdeveloper,
    IFrontendDeveloper, 
    IOnlineArchitect
{
   private $_pincode = '****';

   private $numChildren = 2;

   public function contact($mode = 'twitter') {
     switch($mode) {
         case 'twitter':
           header('Refresh:0;URL="http://twitter.com/roonaan"');
           break;
         case 'linkedin':
           header('Refresh:0;URL="http://www.linkedin.com/in/arnoudtenhoedt"');
           break;
         case 'experts-exchange':
           header('Refresh:0;URL="http://www.experts-exchange.com/M_3422754.html"');
           break;
         case 'stackoverflow':
           header('Refresh:0;URL="http://stackoverflow.com/users/466514/roonaan"');
           break;
     }
   }
}
?>

Roonaan questions