its because of this:
code:
$this->returnit($uitvoer);<< This is where the function is called, hence whatever the function returns will be returned here, but as there is no varible storing the returned value then it is forgoten.
}
function returnit($invoer){I dont understand what you are attempting todo with this function
return $invoer;
//die("Success ofzow");
}
Basically return, returns the value as the result of the function where there must be some way of outputing or storing the value otherwise it will be forgoten.