Skip to content
Advertisement

Replace value in array with result of mysqli_query

I’m having some trouble with php coding. What I want to do is following:

  1. Create an array ($rows) and fil it with the results of a mysqli_query ($query1) –> OK
  2. for each element in that array, replace the value of a certain key (pilot_rule_id) with the result of another mysqli_query ($query2). (the second query will return one row, since the id of the pilot table is the primary key).

So far I have

JavaScript

Advertisement

Answer

You can something like this:

JavaScript

However, you really should learn about SQL joins instead. Using SQL joins you can avoid N+1 queries to the database.

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