in PHP you can call a function. by not calling all parameters by using these statement.
function test($t1 ='test1',$t2 ='test2',$t3 ='test3')
{
echo "$t1, $t2, $t3";
}
and you can just use the function like this
test();
lets just say I want the last one to be different but not the others. the only way i know is by doing this with no succes
test('test1','test2','hi i am different');
is there a other way for doing this I tried this.
test(,,'hi i am different');
test(default,default,'hi i am different');
thanks matthy