sorry Ray if I was not clear, I guess I am a little lost on getting dynamic fields in an email page.
I have 2 recordsets on a page that has a form and the Send Email behavior ( resendEmail.php).
The recordset has the selected member's name, password, username, email, etc and the second recordset for the business name, email adddress, url, etc.
In the Email Page (Block6.php) I would like to reference the fields in the two recordsets (one the members info and the other recordset the business info).
I am under the impression that $global means I could create a recordset in one .php page and that recordset would be available throughout my other pages.
I thought I could create $global recordsets (on the resendEmail.php page) and then be able to use them in the Email page (Block6.php)
For instance on the Email page have a line where it reads
<p>Welcome <?php echo($rs_select->getColumnVal("v_name")); ?></p>- //The v_name is the members full name from the recordset
Hope I was able to explain myself better.