I have this array below. Inside it, i am storeing order status-es in a webshop.
$rendeles_allapotok = array
(
"0"=>"Új megrendelés",
"1"=>"Függőben lévő",
"2"=>"Feldolgozás alatt",
"3"=>"Feldolgozva",
"4"=>"Kiküldve",
"5"=>"Postázva",
"6"=>"Teljesítve",
"7"=>"Sikertelen",
"8"=>"Visszafizetve"
);
Now, this array has 2 element in each row, an id, and the status name.
But i want 3. I want to add a new parameter, the name will be product_back, and the value for that will be 0 or 1.
Thank you!