Tema: ireport
Ver Mensaje Individual
  #8 (permalink)  
Antiguo 25/06/2013, 08:28
guz071
 
Fecha de Ingreso: junio-2013
Mensajes: 9
Antigüedad: 11 años, 6 meses
Puntos: 0
Respuesta: ireport

lo realizo con una clase pero en php aquí esta la clases


<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

include_once('phpjasperxml_0.8c/class/tcpdf/tcpdf.php');
include_once("phpjasperxml_0.8c/class/PHPJasperXML.inc.php");
include_once ('phpjasperxml_0.8c/setting.php');


$xml = simplexml_load_file("sample5.jrxml");

$id=$_GET['id'];
$PHPJasperXML = new PHPJasperXML("en","TCPDF");
$PHPJasperXML->debugsql=false;
$PHPJasperXML->arrayParameter=array("id"=>$id);
$PHPJasperXML->xml_dismantle($xml);

$PHPJasperXML->transferDBtoArray($server,$user,$pass,$db);
$PHPJasperXML->outpage("I"); //page output method I:standard output D:Download file


?>