PDA

View Full Version : Newbie functions question


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?

LaundroMat
11-21-2002, 12:42 PM
It works now, my function code had some errors in it.
*slaps himself*