Thread Datumsfunktion...: Boa, das is scheisse kompliziert.. (8 answers)
Opened by steinwolf at 2003-08-19 19:32

kmonster
 2003-08-21 21:20
#72954 #72954
User since
2003-08-20
33 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
$a = 0;

while ($a == 0) {
   ....
   if (bedingung) {
       print "beeb "; #oder welche Aktion auch immer
       $a++;
   }
}


also das graust mich...
Code: (dl )
1
2
3
4
5
6
7
8
9
$fertig = 0;

do {
   ...
   if (bedingung) {
       print "beeb "; #oder welche Aktion auch immer
       $fertig = 1;
   }
} while (!$fertig);


das ist zumindest verständicher.

wobei ich die äussere while schleife gar nicht verstehe. die wird in jedem fall nur einmal durchlaufen und somit kann man sie weglassen.

km

View full thread Datumsfunktion...: Boa, das is scheisse kompliziert..