Here's my problem, I'd like to have a string that would define my function parameters like this :
function blabla($param1, $param2){
my cool code . $param1 . $param2;
}
$params = 'param1, param2';
blabla($params);
The problem is that when I do this, he uses the string 'param1, param2' as ONE arguments instead of TWO like i'd want 2