01-20-2008, 03:45 AM
|
#2 (permalink)
|
|
The Addict
Join Date: Jan 2008
Location: los angeles
Posts: 309
Thanks: 44
|
i think im getting somewhere :p but the die function keeps showing and the br wont work.
Code:
<?php
function br() {
$num = func_num_args;
if ($num > 0 )
{
echo "<br>";
}
else { die('too many arguments specified or no arguments entered'); }
}
br(5);
?>
__________________
no signature set
|
|
|
|