Thread: overload
View Single Post
Old 08-18-2003, 08:51 PM   #7 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
PHP Code:
<?
function blah($foo$bar "")
{
  echo 
"foo is $foo\n";
  if(
$bar != "")
  {
    echo 
"$bar is here too\n";
  }
}

blah("asdf");
blah("fdsa""jkl;");
?>
joe_bruin is offline   Reply With Quote