| 
<?
// Includieren der Klasse 'debug.inc'
 include_once('debug.inc');
 
 
 for($i = 0; $i < 20 ; $i++){
 $wert[$i] = 'Wert: '.$i;
 }
 
 // Debugging der Variable '$wert'
 $debug->input(__LINE__,$wert,"Inhalt der variable 'wert' !");
 
 /*
 aaaaaaaaaaaa;
 bbbbbbbbbbbbb;
 cccccccccccccccc;
 dddddddddddddddd;
 */
 
 $debug->close();
 ?>
 |