Probably quite a simple one. Rather than calling a function with a predefined variable:
$title = array("Mr", "Ms", "Mrs", "Sir");
combo_box("combo1", $title);
I want to pass the arguments as an explicit array, such as:
combo_box("combo1",("Mr", "Ms", "Mrs", "Sir"));
Does anyone know if this is possible?
Cheers!