What I want to happen is to check whether the commenter entered a URL. (After I run the stripslashes function the URL is "http:///"). If they did, display their name as a link. If not, don't display it as a link. Here is my latest code on my journal page:
CODE
<?php if (stripslashes($row['url']) == "http:///") { printf("%s", stripslashes($row['name'])); } else { printf("<a href=\"%s\">%s</a>", stripslashes($row['url']), stripslashes($row['name'])); } ?>