Skip to content

WordPress – “Notice: Undefined variable”

It seems like there are some PHP errors in my code where the index variable is not set. How could I fix it? Fill About.php Errors I get Notice: Undefined variable: index in /home/r328061/koopia/wp-content/themes/plaza/about.php on line 51 Notice: Undefined variable: index in /home/r328061/koopia/wp-content/th…

how to create dynamic array?

how to create a dynamic array? I need to set the dynamic value of product id and qty and passing into the items array. $itemarray = []; foreach ($ItemCollection as $item) { $productId = $item[‘…

PHP behaving strange in for loop with associative array

the attached image is self-explanatory. I think its not new, but i’d like to understand the details behind it. So to summarize my problem, when an associative array, that has only string keys, is passed to a basic for loop, it overflows, when i assign a value to one of its – previously non existan…