Forum Moderators: coopster
So here it is, I was able to create it in Javascript but find difficulty in PHP. Supposing I have a function same as below but it will pass un-fixed number of values, depending on the users input. Sometimes it could only be one or two or three, so I cannot use the exact number of parameters.
function Substitute($args) {
$Base = $args[0];
}
Substitute($var1,$var2,$var3);