Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/02/2010, 14:21
pacorubio77
 
Fecha de Ingreso: noviembre-2007
Mensajes: 533
Antigüedad: 17 años, 2 meses
Puntos: 1
ayudenme a encontrar error en funcion en clase tcpdf

Hola amigos, necesito me ayuden a corregir este erro, cuando yo hago lo siguiente


Código PHP:
function Emision($fechainicio){
        
//$hoy = date("d-m-Y");
                
$this->SetTextColor(686868);//cambio el color del encabezado a gris
                
$this->SetTextColor(000);
                
$this->SetY(-15);
                
                
$this->MultiCell(0$cell_height$this->fechainicio0''011713true0false);
        } 
y ahi no imprime nada,pero si yo hago lo siguiente


Código PHP:
function Emision($fechainicio){
        
                
//$hoy = date("d-m-Y");
                
$this->SetTextColor(686868);//cambio el color del encabezado a gris
                
$this->SetTextColor(000);
                
$this->SetY(-15);
                
//$this->Cell(0, 10, /*$this->l['w_page '].*/$this->fechainicio, 0, 0, 'C');
                
$this->MultiCell(0$cell_height"Hola"0''011713true0false);
        } 
y ahi si imprime, Hola, está claro que el error está en

$this->MultiCell(0, $cell_height, $this->fechainicio, 0, '', 0, 1, 17, 13, true, 0, false);

esta $this->fechainicio mal definido...verdad?

me pueden ayudar?

Espero respuesta.Gracias.