Hi, i have 2 tables, account and user.
Account
account_ID
user_ID_FK
acc_name
acc_type
User
user_ID
name
I need to display acc_name and acc_type from Account and insert user_ID_FK which i get from function get_users_data();
How can i accomplish inserting user_ID_FK without display to user? Here is my current function.