LaundroMat
11-21-2002, 11:46 AM
Hi,
Suppose this function;
function list_champs ($running = true, $limit = 10, $order = "START_DATE")
{
// code...
}
Why then does
list_champs(false, 10, "START_DATE");
give no errors and
list_champs();
produce an error?
Suppose this function;
function list_champs ($running = true, $limit = 10, $order = "START_DATE")
{
// code...
}
Why then does
list_champs(false, 10, "START_DATE");
give no errors and
list_champs();
produce an error?