Skip to content
Advertisement

foreach and for loop not getting all data from sql query

**Edited

I split the sql queries into 3 and now the queries look like this.

JavaScript

I added foreach and for loop under the each result to get the multidimensional array result and got the module results like this

JavaScript

As you can see the module list only displays one module with each userid.

It should list 8 different modules per user but it loops only 6 times that is only the number of user count. I’d like to get users with all modules the user attempted.

Here is the code

JavaScript

Question: How can I put all data from $modules under $users array? At the moment it only loops the first element in $modules query.

I’ve tried methods suggested in the comments and answer but this is the closest one that I got so far.

Any help or tips would be appreciated.

Thanks in advance!

Advertisement

Answer

I found the issue in Moodle database calling get_records_sql

JavaScript

This returns an array indexed by the first field in the results. Which means in my case, only returns one set of an array from each userid. After I changed the sql query for moduleid(unique value) to come first it is now working as expected.

JavaScript

Before it was like,

JavaScript

Now I get,

JavaScript

This post helped me to sort it out. get_records_sql returns only one result using inner join in moodle

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement