<table c=3>
hi there
<cbogus>hi there</c>
<c>hi there</c><c name=blah action=test3>fud</c>
<c name=booze>can't see this</c>

<?

function test1 ($a) {
 /*   global $a; */
    print "<c name=barf>";
    $b = 15;
    while ($a < 15) {
	$a++;
	print ($a);
	print "v";
    }
    print "</c>";
    10;
}

function test2($arg) {
    $g = "to";
    cellp("blah", $arg);
}

function test3($arg) {
    test2(10);
    cellp("blah", $arg);
}

test1 $a;
test1 ($foo, $bar);
test1 ($foo, $bar, 10);
test1 ($foo);
test1 13;

test3(9);

