Hi All,
I am moving some php code from a Linux machine to a Windows 2000 machine
with the code belowe I get the following error :
Notice: Undefined offset: 1 in c:\inetpub\wwwr oot\test.php on line 5
1) reset($kolom1);
2) while(list($cat ,$lnk) = each($kolom1)){
3) kop($cat);
4) while(list($nam e,$href) = each($lnk)){
5) list( $name, $status) = split( '[,]',$name);
6) links($name,$hr ef,'n',$status) ;
7) }
8) footer();
9) }
On the Linux server there is no problem but now on the Windows 2000 server
there is.
Anybody got a clue what could be wrong here??
Thanks!
I am moving some php code from a Linux machine to a Windows 2000 machine
with the code belowe I get the following error :
Notice: Undefined offset: 1 in c:\inetpub\wwwr oot\test.php on line 5
1) reset($kolom1);
2) while(list($cat ,$lnk) = each($kolom1)){
3) kop($cat);
4) while(list($nam e,$href) = each($lnk)){
5) list( $name, $status) = split( '[,]',$name);
6) links($name,$hr ef,'n',$status) ;
7) }
8) footer();
9) }
On the Linux server there is no problem but now on the Windows 2000 server
there is.
Anybody got a clue what could be wrong here??
Thanks!
Comment