I have a list of ready-made physical exercises and I want to add them to my application so that they are displayed. I m thinking of using the Room database, but how can I populate it? Or perhaps there are other options for solving my problem?How to populate the Room database?
$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...