I'm currently debugging a pile of code I didn't write and I noticed this line:
<FORM ACTION="/contacts/lookup.php4/personal/7065" NAME="lockdownform" METHOD="post">
the lookup.php4 file has a line
$argv = split("/", $PATH_INFO);
That splits teh additional paramters and uses them (why they do this rather than query string, I don't know)
can you pass parameters like that in the action attribute? It doesnt seem to make sense to me .... the script works but there are sooooo many forms in this one page that its hard to tell if that particular one works.