Eine Class mehrmals aufrufen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Eine Class mehrmals aufrufen

    Hallo mal wieder...

    Ich habe folgendes Problem, ich habe eine while Schleife mit mehreren Abfragen, nun soll nach jeder Abfrage eine Seite generiert wird, was ich in einer include Datei mache. In dieser include Datei, befindet sich eine class, diese kann ja nur einmal aufgerufen werden, was ja auch klar ist. Nun suche ich aber einen Weg, um diese Datei immer wieder in der schleife laufen zu lassen. include_once. ist nicht das richtige, weil die Seite soll / muss immer wieder neu geladen werden....

    Gruß und Dank aus Berlin

    SLSB02

  • #2
    Code:
    include( klassendatei.php );
    
    for( $i=1; $i<10; $i++ ) {
       $tmp = new Klasse();
    }
    wo ist das Problem?
    TBT

    Die zwei wichtigsten Regeln für eine berufliche Karriere:
    1. Verrate niemals alles was du weißt!


    PHP 2 AllPatrizier II Browsergame

    Kommentar


    • #3
      Hallo TBT,

      vielen Dank für deine Antwort... Auf die Idee, bin ich auch schon gekommen aber irgendwie,weiß ich nicht so ganz, wo ich das einfügen soll....
      Bin heute ein wenig auf den Kopf gefallen... Danke

      Gruß und Dank

      Kommentar


      • #4
        nur die Klasse mit require_once laden und die include-Datei weiterhin mit include? (wenn ich das jetzt richtig verstanden habe...)

        Ein netter Guide zum übersichtlichen Schreiben von PHP/MySQL-Code!

        bei Klammersetzung bevorzuge ich jedoch die JavaCoding-Standards
        Wie man Fragen richtig stellt

        Kommentar


        • #5
          Hallo, und vielen Dank,

          das Problem, ist aber das, das die Class in der zu includen Datei steht...
          So, und da stehe ich nun etwas auf dem schlauch... Ich weiß nicht, wo ich die code zeile von TBT oben einfügen soll....

          Gruß und Dank

          Kommentar


          • #6
            Original geschrieben von SLSB02
            ....das Problem, ist aber das, das die Class in der zu includen Datei steht...
            Und wo ist dein Problem ?

            Dann lager sie halt aus...
            gruss Chris

            [color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]

            Kommentar


            • #7
              hmm du weißt ja das klassen quasi baupläne für objekte sind oder?
              in der einzubindenden datei ist nur die klasse oder auch code für die ausgabe? oder erzeugen die methoden des objektes die seite?

              in der schleife wird jedes mal ein neues objekt erzeugt und die referenz auf das objekt in $tmp gespeichert.
              falls du mehrere objekte brauchst würd ich es mit ner kleinen abwandlung machen

              PHP-Code:
              include( klassendatei.php );

              for( 
              $i=1$i<10$i++ ) {
                 
              $tmp[$i] = new Klasse(); 
              //ist nicht zwingend notwendig aber ich weiß gern in 
              //welches element ich mein zeug reinknall

              Kommentar


              • #8
                So nun noch einmal langsam....

                Ich möchte mehrere .pdf Datenblätter erstellen, dazu muss ich eine schleife laufen lassen. Ich include also an der gewünschten Stelle meine Datei, in welcher die class erstellt wird und auch die ausgabe des .pdf erfolgt. Nun habe ich aber eben das Problem, dass es nicht klappt, weil wie ich schon wusste, classes nicht mehrmals aufegrufen werden können. Nun zu Auslagern, der class, das möchte ich eigentlich verhindern. denn der code, kann ja in der zu includenden Datei bleiben, bleibt alles übersichtlicher...

                Ich hoffe, das man mich jetzt besser versteht.... * *

                Gruß
                Zuletzt geändert von SLSB02; 09.08.2005, 19:50.

                Kommentar


                • #9
                  deswegen find ich oop mit php auch besser als das prozedurale
                  du schreibst eine klasse bindest sie am kopf der datei ein und instanzierst überall wo du es brauchst ein objekt der klasse.

                  Kommentar


                  • #10
                    Also,

                    folgendes ist das, was in der Datei steht, welches per include kommt:

                    PHP-Code:
                    class PDF extends FPDF
                    {    
                    //Page header
                     
                    function RoundedRect($x$y$w$h,$r$style '')
                        {
                            
                    $k $this->k;
                            
                    $hp $this->h;
                            if(
                    $style=='F')
                                
                    $op='f';
                            elseif(
                    $style=='FD' or $style=='DF')
                                
                    $op='B';
                            else
                                
                    $op='S';
                            
                    $MyArc 4/* (sqrt(2) - 1);
                            
                    $this->_out(sprintf('%.2f %.2f m',($x+$r)*$k,($hp-$y)*$k ));
                            
                    $xc $x+$w-$r ;
                            
                    $yc $y+$r;
                            
                    $this->_out(sprintf('%.2f %.2f l'$xc*$k,($hp-$y)*$k ));

                            
                    $this->_Arc($xc $r*$MyArc$yc $r$xc $r$yc $r*$MyArc$xc $r$yc);
                            
                    $xc $x+$w-$r ;
                            
                    $yc $y+$h-$r;
                            
                    $this->_out(sprintf('%.2f %.2f l',($x+$w)*$k,($hp-$yc)*$k));
                            
                    $this->_Arc($xc $r$yc $r*$MyArc$xc $r*$MyArc$yc $r$xc$yc $r);
                            
                    $xc $x+$r ;
                            
                    $yc $y+$h-$r;
                            
                    $this->_out(sprintf('%.2f %.2f l',$xc*$k,($hp-($y+$h))*$k));
                            
                    $this->_Arc($xc $r*$MyArc$yc $r$xc $r$yc $r*$MyArc$xc $r$yc);
                            
                    $xc $x+$r ;
                            
                    $yc $y+$r;
                            
                    $this->_out(sprintf('%.2f %.2f l',($x)*$k,($hp-$yc)*$k ));
                            
                    $this->_Arc($xc $r$yc $r*$MyArc$xc $r*$MyArc$yc $r$xc$yc $r);
                            
                    $this->_out($op);
                        }

                        function 
                    _Arc($x1$y1$x2$y2$x3$y3)
                        {
                            
                    $h $this->h;
                            
                    $this->_out(sprintf('%.2f %.2f %.2f %.2f %.2f %.2f c '$x1*$this->k, ($h-$y1)*$this->k,
                                
                    $x2*$this->k, ($h-$y2)*$this->k$x3*$this->k, ($h-$y3)*$this->k));
                        }
                        
                    function 
                    Header()
                    {
                        global 
                    $oID;
                         
                    $date strftime('%A, %d %B %Y');
                        
                    //Logo
                        
                    $this->Image('images/logo.jpg',3,5,30);

                        
                    // Invoice Number and date
                        
                    $this->SetFont('Arial','B',10);
                        
                    $this->SetTextColor(0,102,153);
                        
                    $this->SetY(37);
                        
                    $this->MultiCell(50,4,"ID: " $products_id "\n" 0,'L');
                        
                        
                    // Company Address
                        
                    $this->SetX(0);
                        
                    $this->SetY(10);
                        
                    $this->SetFont('Arial','B',10);
                        
                    $this->SetTextColor(0,102,153);
                        
                    $this->Ln(0);
                        
                    $this->Cell(149);
                        
                    $this->MultiCell(503.5STORE_NAME_ADDRESS,0,'R');
                    }

                    function 
                    Footer()
                    {
                        
                    //Position at 1.5 cm from bottom
                        
                    $this->SetY(-19);
                        
                    //Arial italic 8
                        
                    $this->SetFont('Arial','',12);
                        
                    $this->SetTextColor(0,102,153);
                        
                    $this->Cell(0,10PRINT_TEXT0,0,'C');
                        
                    $this->SetY(-15);
                           
                    $this->Cell(0,10PRINT_URL0,0,'C');
                        
                    //Page number
                        //$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
                        
                    }
                    }
                    //Instanciation of inherited class
                    $pdf=new PDF(); 
                    So und da muss ja nun irgendwie mit rein, dass ich das in einer Schleife laufen lassen kann.... Aber wo das ist die Frage und vielleicht auch noch mit welcher Möglichkeit...

                    Danke
                    Zuletzt geändert von SLSB02; 09.08.2005, 20:32.

                    Kommentar


                    • #11
                      wirklich keiner eine Idee, ich verzweifel hier gleich.....

                      Kommentar


                      • #12
                        Und wo ist deine Schleife ?
                        gruss Chris

                        [color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]

                        Kommentar


                        • #13
                          Hallo und guten morgen...

                          Das hätte ich wohl wirklich auch mal dazu Posten sollen....

                          PHP-Code:
                          $products_query tep_db_query("select * from " 
                          TABLE_PRODUCTS);
                          while (
                          $products tep_db_fetch_array
                          ($products_query)) {

                          class 
                          PDF extends FPDF
                          {    
                          //Page header
                           
                          function RoundedRect($x$y$w$h,$r$style '')
                              {
                                  
                          $k $this->k;
                                  
                          $hp $this->h;
                                  if(
                          $style=='F')
                                      
                          $op='f';
                                  elseif(
                          $style=='FD' or $style=='DF')
                                      
                          $op='B';
                                  else
                                      
                          $op='S';
                                  
                          $MyArc 4/* (sqrt(2) - 1);
                                  
                          $this->_out(sprintf('%.2f %.2f m',($x+$r)*$k,($hp-$y)*$k ));
                                  
                          $xc $x+$w-$r ;
                                  
                          $yc $y+$r;
                                  
                          $this->_out(sprintf('%.2f %.2f l'$xc*$k,($hp-$y)*$k ));

                                  
                          $this->_Arc($xc $r*$MyArc$yc $r$xc $r$yc $r*$MyArc$xc $r$yc);
                                  
                          $xc $x+$w-$r ;
                                  
                          $yc $y+$h-$r;
                                  
                          $this->_out(sprintf('%.2f %.2f l',($x+$w)*$k,($hp-$yc)*$k));
                                  
                          $this->_Arc($xc $r$yc $r*$MyArc$xc $r*$MyArc$yc $r$xc$yc $r);
                                  
                          $xc $x+$r ;
                                  
                          $yc $y+$h-$r;
                                  
                          $this->_out(sprintf('%.2f %.2f l',$xc*$k,($hp-($y+$h))*$k));
                                  
                          $this->_Arc($xc $r*$MyArc$yc $r$xc $r$yc $r*$MyArc$xc $r$yc);
                                  
                          $xc $x+$r ;
                                  
                          $yc $y+$r;
                                  
                          $this->_out(sprintf('%.2f %.2f l',($x)*$k,($hp-$yc)*$k ));
                                  
                          $this->_Arc($xc $r$yc $r*$MyArc$xc $r*$MyArc$yc $r$xc$yc $r);
                                  
                          $this->_out($op);
                              }

                              function 
                          _Arc($x1$y1$x2$y2$x3$y3)
                              {
                                  
                          $h $this->h;
                                  
                          $this->_out(sprintf('%.2f %.2f %.2f %.2f %.2f %.2f c '$x1*$this->k, ($h-$y1)*$this->k,
                                      
                          $x2*$this->k, ($h-$y2)*$this->k$x3*$this->k, ($h-$y3)*$this->k));
                              }
                              
                          function 
                          Header()
                          {
                              global 
                          $oID;
                               
                          $date strftime('%A, %d %B %Y');
                              
                          //Logo
                              
                          $this->Image('images/logo.jpg',3,5,30);

                              
                          // Invoice Number and date
                              
                          $this->SetFont('Arial','B',10);
                              
                          $this->SetTextColor(0,102,153);
                              
                          $this->SetY(37);
                              
                          $this->MultiCell(50,4,"ID: " $products_id "\n" 0,'L');
                              
                              
                          // Company Address
                              
                          $this->SetX(0);
                              
                          $this->SetY(10);
                              
                          $this->SetFont('Arial','B',10);
                              
                          $this->SetTextColor(0,102,153);
                              
                          $this->Ln(0);
                              
                          $this->Cell(149);
                              
                          $this->MultiCell(503.5STORE_NAME_ADDRESS,0,'R');
                          }

                          function 
                          Footer()
                          {
                              
                          //Position at 1.5 cm from bottom
                              
                          $this->SetY(-19);
                              
                          //Arial italic 8
                              
                          $this->SetFont('Arial','',12);
                              
                          $this->SetTextColor(0,102,153);
                              
                          $this->Cell(0,10PRINT_TEXT0,0,'C');
                              
                          $this->SetY(-15);
                                 
                          $this->Cell(0,10PRINT_URL0,0,'C');
                              
                          //Page number
                              //$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
                              
                          }
                          }
                          //Instanciation of inherited class
                          $pdf=new PDF();

                          // Set the Page Margins
                          $pdf->SetMargins(4,2,4);

                          // Add the first page
                          $pdf->AddPage();

                          //Draw the top line with invoice text
                          $pdf->Cell(50);
                          $pdf->SetY(62);
                          $pdf->SetDrawColor(153,153,153);
                          $pdf->Cell(15,.1,'',1,1,'L',1);
                          $pdf->SetFont('Arial','BI',15);
                          $pdf->SetTextColor(153,153,153);
                          $pdf->Text(22,63.5,$payment_reminder_select['warning_name']);
                          $pdf->SetY(62);
                          $pdf->SetDrawColor(153,153,153);
                          $pdf->Cell(38);
                          $pdf->Cell(160,.1,'',1,1,'L',1);

                          //Draw Box for Invoice Address
                          $pdf->SetDrawColor(0);
                          $pdf->SetLineWidth(0.5);
                          $pdf->SetFillColor(224);
                          $pdf->RoundedRect(36790352'DF');

                          //Draw the invoice address text
                              
                          $pdf->SetFont('Arial','B',10);
                              
                          $pdf->SetTextColor(0);
                              
                          $pdf->Text(8,71ENTRY_SOLD_TO);
                              
                          $pdf->SetX(0);
                              
                          $pdf->SetY(74);
                              
                          //$pdf->SetFont('Arial','B',8);
                              //$pdf->SetTextColor(0);
                              
                          $pdf->Cell(5);
                              
                          $pdf->MultiCell(703.3tep_address_format(1$order->customer''''"\n"),0,'L');
                              
                              
                          //Draw Box for Delivery Address
                              
                          $pdf->SetDrawColor(0);
                              
                          $pdf->SetLineWidth(0.5);
                              
                          $pdf->SetFillColor(255);
                              
                          $pdf->RoundedRect(1126790352'DF');
                              
                              
                          //Draw the invoice delivery address text
                              
                          $pdf->SetFont('Arial','B',10);
                              
                          $pdf->SetTextColor(0);
                              
                          $pdf->Text(117,71,ENTRY_SHIP_TO);
                              
                          $pdf->SetX(0);
                              
                          $pdf->SetY(74);
                              
                          $pdf->Cell(115);
                              
                          $pdf->MultiCell(503.3tep_address_format(1$order->delivery''''"\n"),0,'L');

                              
                          //Draw Box for Order Number, Date & Payment method
                              
                          $pdf->SetDrawColor(0);
                              
                          $pdf->SetLineWidth(0.5);
                              
                          $pdf->SetFillColor(224);
                              
                          $pdf->RoundedRect(3107199112'DF');

                              
                          //Draw Order Number Text
                              
                          $temp str_replace('&nbsp;'' 'PRINT_INVOICE_ORDERNR);
                              
                          $pdf->Text(7,113$temp tep_db_input($oID));    
                              
                          //Draw Date of Order Text
                              
                          $temp str_replace('&nbsp;'' 'PRINT_INVOICE_DATE);
                              
                          $pdf->Text(75,113,$temp tep_date_short($order->info['date_purchased']));    
                              
                          //Draw Payment Method Text
                              
                          $temp substr ($order->info['payment_method'] , 023);
                              
                          $pdf->Text(130,113,ENTRY_PAYMENT_METHOD ' ' $temp);    
                              
                          //$pdf->Cell(198,29,ENTRY_PAYMENT_METHOD . ' ' . $temp, 0, 0, 'R');
                              
                          //Fields Name position
                          $Y_Fields_Name_position 125;
                          //Table position, under Fields Name
                          $Y_Table_Position 131;

                          function 
                          output_table_heading($Y_Fields_Name_position){
                              global 
                          $pdf;
                          //First create each Field Name
                          //Gray color filling each Field Name box
                          $pdf->SetFillColor(232,232,232);
                          //Bold Font for Field Name
                          $pdf->SetFont('Arial','B',10);
                          $pdf->SetY($Y_Fields_Name_position);
                          $pdf->SetX(5);
                          $pdf->Cell(10,6,'Qty',1,0,'C',1);
                          $pdf->SetX(15);
                          $pdf->Cell(25,6,TABLE_HEADING_PRODUCTS_MODEL,1,0,'C',1);
                          $pdf->SetX(40);
                          $pdf->Cell(80,6,TABLE_HEADING_PRODUCTS,1,0,'C',1);
                          $pdf->SetX(180);
                          $pdf->Cell(20,6,TABLE_HEADING_TAX,1,0,'C',1);
                          //$pdf->SetX(120);
                          //$pdf->Cell(20,6,TABLE_HEADING_PRICE_EXCLUDING_TAX,1,0,'C',1);
                          $pdf->SetX(120);
                          $pdf->Cell(30,6,TABLE_HEADING_PRICE_INCLUDING_TAX,1,0,'C',1);
                          //$pdf->SetX(160);
                          //$pdf->Cell(20,6,TABLE_HEADING_TOTAL_EXCLUDING_TAX,1,0,'C',1);
                          $pdf->SetX(150);
                          $pdf->Cell(30,6,TABLE_HEADING_TOTAL_INCLUDING_TAX,1,0,'C',1);
                          $pdf->Ln();
                          }
                          output_table_heading($Y_Fields_Name_position);
                          //Show the products information line by line
                          for ($i 0$n sizeof($order->products); $i $n$i++) {
                              
                          $pdf->SetFont('Arial','',10);
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(5);
                              
                          $pdf->MultiCell(10,6,$order->products[$i]['qty'],1,'C');
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(40);
                              if (
                          strlen($order->products[$i]['name']) > 40 && strlen($order->products[$i]['name']) < 50){
                                  
                          $pdf->SetFont('Arial','',8);
                                  
                          $pdf->MultiCell(80,6$order->products[$i]['name'],1,'L');
                                  }
                              else if (
                          strlen($order->products[$i]['name']) > 50){
                                  
                          $pdf->SetFont('Arial','',8);
                                  
                          $pdf->MultiCell(80,6,substr($order->products[$i]['name'],0,50),1,'L');
                                  }
                              else{
                                  
                          $pdf->MultiCell(80,6,$order->products[$i]['name'],1,'L');
                                  }
                              
                          $pdf->SetFont('Arial','',10);
                              
                          //$pdf->SetY($Y_Table_Position);
                              //$pdf->SetX(95);
                              //$pdf->MultiCell(15,6,tep_display_tax_value($order->products
                          [$i]['tax']) . '%',1,'C');
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(15);
                              
                          $pdf->SetFont('Arial','',8);
                              
                          $pdf->MultiCell(25,6,$order->products[$i]['model'],1,'C');
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(120);
                              
                          $pdf->SetFont('Arial','',10);
                              
                          //$pdf->MultiCell(20,6,$currencies->format($order->products[$i]
                          ['final_price'], true$order->info['currency'], $order->info
                          ['currency_value']),1,'C');
                          //    $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(180);
                              
                          $pdf->MultiCell(20,6substr($order->products[$i]['tax'],02) . ' %',1,'C');
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(120);
                              
                          $pdf->MultiCell(30,6,$currencies->format(tep_add_tax($order-
                          >
                          products[$i]['final_price'], $order->products[$i]['tax']), true$order->info
                          ['currency'], $order->info['currency_value']),1,'C');
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(150);
                              
                          $pdf->MultiCell(30,6,$currencies->format(tep_add_tax($order-
                          >
                          products[$i]['final_price'], $order->products[$i]['tax']) * $order->products
                          [$i]['qty'], true$order->info['currency'], $order->info
                          ['currency_value']),1,'C');
                              
                          $Y_Table_Position += 6;

                              
                          //Check for product line overflow
                               
                          $item_count++;
                              if ((
                          is_long($item_count 32) && $i >= 20) || ($i == 20)){
                                  
                          $pdf->AddPage();
                                  
                          //Fields Name position
                                  
                          $Y_Fields_Name_position 125;
                                  
                          //Table position, under Fields Name
                                  
                          $Y_Table_Position 70;
                                  
                          output_table_heading(Y_Table_Position-6);
                                  if (
                          $i == 20$item_count 1;
                              }
                          }
                          for (
                          $i 0$n sizeof($order->totals); $i $n$i++) {
                              
                          $pdf->SetY($Y_Table_Position);
                              
                          $pdf->SetX(100);
                              
                          $temp substr ($order->totals[$i]['text'],,3);
                              
                          //if ($i == 3) $pdf->Text(10,10,$temp);
                              
                          if ($temp == '<b>')
                                  {
                                  
                          $pdf->SetFont('Arial','B',10);
                                  
                          $temp2 substr($order->totals[$i]['text'], 3);
                                  
                          $order->totals[$i]['text'] = substr($temp20strlen($temp2)-4);
                                  }
                              
                          $pdf->MultiCell(100,6,$order->totals[$i]['title'] . ' ' $order-
                          >
                          totals[$i]['text'],0,'R');
                              
                          $Y_Table_Position += 5;
                          }

                              
                          // Draw the shipping address for label
                              //Draw the invoice delivery address text
                              /*
                              $pdf->SetFont('Arial','B',11);
                              $pdf->SetTextColor(0);
                              //$pdf->Text(117,61,ENTRY_SHIP_TO);
                              //$pdf->SetX(0);
                              $pdf->SetY(240);
                              $pdf->Cell(20);
                              $pdf->MultiCell(50, 4, strtoupper(tep_address_format(1, $order-
                          >delivery, '', '', "\n")),0,'L');
                                  */
                              // PDF's created now output the file
                              //$pdf->Output();

                          $pdf->Output('pdf/' $payment_reminder['customers_id'] . '_' $payment_reminder['orders_id'] . '_mahn.pdf''F');

                          Bitte nicht wundern, das war wohl mal was mit Rechnung oder so... Habe das nur mal zur Hand genommen, ich hoffe, das Hilft weiter... Und da sind auch noch keine Werte aus der Abfrage drin... denn erstmal, soll die Schleife laufen....

                          Gruß und Dank aus Berlin

                          Kommentar


                          • #14
                            Brrrrr. WENN dann

                            PHP-Code:
                            class pdf extends fpdf
                            {
                            ...
                            ...
                            }


                            $products_query tep_db_query("select * from TABLE_PRODUCTS");
                            while (
                            $products tep_db_fetch_array ($products_query)) 
                            {
                                ....
                                .... 
                            Weiter mit der Klasse arbeiten 
                                
                            ....

                            gruss Chris

                            [color=blue]Derjenige, der sagt: "Es geht nicht", soll den nicht stoeren, der's gerade tut."[/color]

                            Kommentar


                            • #15
                              Hallo und Danke,

                              ich würde das da gerne hinsetzte, nur ist das Problem, dass schon dadrüber eine Variable aus der DB verwendet werden soll. Ich habe es aber trotzdem versucht. *lieb iss*

                              Nur liest er jetzt nicht mehr alle Zeilen aus der DB sondern nur die erste...
                              Also das heißt ich weiß nicht genau, ob er nur eine Liest, auf jeden Fall, wird nur ein pdf gepeichert. Und das ist ja nicht ganz sinn und zweck....

                              Desweiteren, habe ich versucht es an dieser Stelle mit einer { } einzusetzen und dann erhalte ich folgende Fehlermeldung:

                              Fatal error: Cannot redeclare output_table_heading() (previously declared in /srv/www/www.xxx.de/pdf.php:166) in /srv/www/www.xxx.de/pdf.php on line 166

                              Gruß und Dank
                              Zuletzt geändert von SLSB02; 10.08.2005, 10:17.

                              Kommentar

                              Lädt...
                              X