> "Curtis" == Curtis Poe <[EMAIL PROTECTED]> writes:
Curtis> Incidentally, here's a neat trick taking advantage of the fact that $_ aliases
the variable in
Curtis> question when using for loops:
Curtis> for ( $word, $display ) {
Curtis> $_ = encode_entities( $_ );
Curtis> }
--- Kevin Harwood <[EMAIL PROTECTED]> wrote:
> I have a web page that allows you to click a hyperlink and then it pulls up
> data from a Berkley db based on the word(s) that forms the link.
>
> When there are links that have spaces, only the first word of the link is
> recognized or used.
>
> He