>FromYourCode();

All the sources codespage 75

JavaScript
 December 18, 2013 pm31 23:15
#30
function removeContent(element){
	$(element).parent().parent().parent().parent().parent().remove();
}
JavaScript
 November 07, 2013 am30 10:38
#84
var a = 123;
var c = 456;

Appel(a, c);

function Appel(a, b) {
    if(typeof(c) == 'undefined')
    {
       c = b;
    }

    Suite(a, b);
}
PHP
 September 10, 2013 pm30 14:32
#28
function truefalse($var, &$res){
   if($var == true)
   { 
      $res =true;
   }
   if($var == false)
   {
      $res=false;
   }
}