Help with for each multidimensional array using for each | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 3

Help with for each multidimensional array using for each

If a user with ID 30 has 5 records in the transaction table. Let’s say Amount. Transaction type Good. Good boy Bad. Bad boy Cool. Cool boy Love. Love boy Me. Me boy When querried , What I want is for the amount colum to be converted to a variable name while the value would be what’s in the transaction type. The result I’m expecting would now be $good = good boy $bad = bad boy $cool = cool boy $love = love boy $me = me boy Is this possible?

6th Jul 2019, 8:12 PM
Micheal Thomas
Micheal Thomas - avatar
1 ответ
0
Remember that a multi dimensional is like having a table within a table. $table = array ("good" => "good boy", "bad" => "bad boy", "cool" => "cool boy", "love" => "love boy", "me" => "me boy");
7th Jul 2019, 4:20 AM
Patrick Kongawi
Patrick Kongawi - avatar