PHP: reset - Manual - PHP: Hypertext Preprocessor
Note that you can't use pointer here. It will reset the iteration counter in this case. foreach($array as $key=>&$value) {...} Use standard foreach instead ... Also it's good to reset this way the multidimentional arrays: reset($voo2['moder']); while (lis
php.net |