Forum Moderators: coopster
$fields_displayed = array( many fields, user_name);
the new service is fed by DB A
I also run on the same server a DB B, which contains
the member’s registration data
I would like the user (logged in) to be able to see his username at the bottom of the form used to enter new data without having to type it again
So the question is
How can I introduce a var in the array that will grab the username from the second DB
can I do something like
$fields_displayed = array( many fields, $user_name);
where $username will sit atop the code and provide query and grab the user name from DB b
Thank you
Regards