Erm, I don't get your question.
tnylsej wrote:If one has used the explode function to retrieve individual string
This doesn't make sense - an individual string? [man]explode/man returns an array of strings...
tnylsej wrote:can tt individual string, aft being exploded, be placed as a parameter of a recordset i.e. $rs[$attribute] to retrieve values from another table?
Once again, if $attribute is the result of the [man]explode/man function, it will be an array of strings. If you know which string you're after, i.e. $attribute[1] then yes, you can use that as an array index (after all, it's simply a string).