Hmm how would i convert it to use the echo? Heres what I have for the php:
printf("<a href=\"%s?id=%s\">%s</a><br>\n", $PHP_SELF, $myrow["id"], $myrow["name"]);
I want that to open to a new custom size window. The only way I know how to do it is to use this:
<a href="javascript:void(0)" onclick="javascript:window.open('pageloc.htm','myWindow','toolbar=no,status=no,location=no,menubar=no,width=325,height=288,screenx=0,screeny=0,top=0,left=0,scrolling=no,resize=no');">Title</a>
How do I get them together?