I have a 'do while' repeat region that returns new site registrants.
This returns results as:
<?php echo $row_Main['MemID']; ?> //primary id
Now what I need to do is add a column on the row, and place a 2nd query that will match on this same value.
I'm doing this to make conditional echoes -- its an admin panel, and I simply want to echo hyperlinks for tasks to perform on each site registrant. When the 2nd query evaluates !=='' I'll echo 'done', if not, link to a form to perform the referred to task. Roughly within the repeat col row:
if (2nd query !=='') {echo 'done'} else{echo hyperlink to do this}
How can $row_Main['MemID']; value be matched on within seperate queries that are placed within its repeat region?
Dreamweaver runtime variable: shouldn't Post pull this if its already being echoed on the row?
$HTTP_POST_VARS($row_Main['MemID'])