I have managed to get it to work. the problem i had was with a variable being used in the second mySQL query, not with the actual structure of the queries. for some reason, a variable was not being translated inside the while loop properly when it was being sent from another form. kind of odd though, outside the while loop it worked fine.
Form 1 $phpself?
$var Submited to mySQL While Loop #1
Submit --> Nested mySQL While Loop #2
when used at any point in While Loop #1, the value of $var of came out to be 46, the correct value. no problems. HOWEVER, when used in While Loop #2, the value came out to be <! 46 >, no matter what i did, reassign to a new $, echo, yada. Until i created another query prior to both of these:
$phpself
1.mySQL While Loop #0 - queries database to find a match
for $var (var was a primary key in table 1) - got a match and
assigned the value from the query to $var_var - END While Loop
i then substituted $var_var for $var and my other query structure worked fine.
why? i have not one single clue, but it worked and i was able to query both tables, get the correct results and get back to work on that section of the site.
Thanks for ya'lls help, if i can help in any way, I will be happy to.