Hi,
for($j=0;$j<count($list);$j++) {
if($list[$j] == $list[$j+1]) {
array_splice($list, $j+1, 1);
Mit so einer for-Schleife kannst du zwar generell indexbasiert auf das jeweils nächste Array-Element zugreifen; allerdings ist dieses jeweils „nächste“ nicht das, für das du es hältst.
MfG ChrisB
--
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]
“Whoever best describes the problem is the person most likely to solve the problem.” [Dan Roam]