Code: Select all
PHP Fatal error: Uncaught Error: Call to undefined function each() in /file.php
Code: Select all
PHP Fatal error: Uncaught Error: Call to undefined function each() in /file.php
Code: Select all
while ( list ($key,$val) = each ($array) )
{
Code: Select all
foreach($array as $key=>$val)
{
...
}