Jim, thanks for your help; It was Ryan's question, but I tagged it, as I'm working on the same type of problem in the generic sense....
was wondering if you could clarify:
your statement copied from above, returns when decoded on the next page, the word $first_name, rather than the value from the DB... is this because we need to concatenate non-string variable types, as such?
echo '<A HREF=\"view_profile.php?first_name='.$first_name.'&last_name='.$last_name.'\">' . $row["first"] . ' ' . $row["last"] . '</A><BR>';
when concatenating non-string variables, it worked correctly, in otherwords the encoded URL variables had to NOT be in the echo's quotations. when i did it this way, it worked as intended.
Did I uncover an oversight? [big_grin] or does the way you have it there, works also, and Im just really daft at getting it to work that way <--- VERY possible. [sheepish_grin]
nevertheless, i got MINE to work; hoping Ryan is ok, and THANK you again, very much.