hey gracias por contestar tan rapido y mi codigo es este:
Código PHP:
Ver original<?php
require_once("/dompdf/dompdf_config.inc.php");
include_once("php_conexion.php");
$nombreOrganizacion=$_SESSION['nombre'];
$clave=$_SESSION['clave'];
$pas=$_SESSION['pass'];
if(isset($_POST['almacenar1'])){ $id++;
}
$sql = "INSERT INTO `num`(`num`) VALUES ($id)";
}
/*function Footer()
{
//Posición: a 1,5 cm del final
$this->SetY(-15);
//Arial italic 8
$this->SetFont('Arial','I',8);
//Número de página
$this->Cell(0,10,'Pagina '.$this->PageNo().'/{nb}',0,0,'C');
}*/
$id = $row['id'];
$sql="SELECT `carrito`.clave,`producto`.descripcion,`producto`.unidad,`producto`.precio,`carrito`.cantidad FROM `carrito` inner join `producto` on `carrito`.clave=`producto`.clave";
$marca='Lovato';
$neto=0;
$html = '<html><head></head>
<body style="font-size:11px; font-family:Arial, Helvetica, sans-serif;">
<div align="center" style=" margin-left:59px; position:absolute;left:60px;top:120px;width:400px;height:55px;z-index:8;"><i><h1 id="fuente1" style="color:#f55616; align:center;">Integra Control y seguridad</h1></i></div><br/>
<h3>Numero de cotizacion <font size ="12px", color ="red">'.$id.'</font></h3>
<h3>Cliente:'.$nombreOrganizacion.'</h3>
<div align="center" style=" margin-top:20px; margin-left:15px;">
<table>';
$html .= '<tr ><th bgcolor="#DCDCDC" >Clave</th><th bgcolor="#DCDCDC">Descripcion</th><th bgcolor="#DCDCDC">Unidad de Empaque</th><th bgcolor="#DCDCDC">Marca</th><th bgcolor="#DCDCDC">Existencias</th><th bgcolor="#DCDCDC">Precio</th><th bgcolor="#DCDCDC">Cantidad</th><th bgcolor="#DCDCDC">Subtotal</th>';
$html .= '</tr>';
$total=$row['precio']*$row['cantidad'];#cantidad * valor unitario
//$neto=$neto+$total;#acumulamos el neto
$marca="Lovato";
$totalito=$neto;
$clave=$row[0];
$bgcolor="";
if($extencion1=="D"){
//$precio=$row['precio']*0.95;
$neto=$neto+($total*0.90);
}
else{
if($extencion1=="F"){
$neto=$neto+$total*1.00;#acumulamos el neto
}
else {
if($extencion1=="I"){
$neto=$neto+$total*0.85;#acumulamos el neto
}
else{
if($extencion1=="R"){
$neto=$neto+$total*0.95;#acumulamos el neto
}
else{
$neto=$neto+$total;#acumulamos el neto
}
}
}
}
if($bgcolor == '#AFEEEE') $bgcolor = '#C2FF92';
else $bgcolor = '#AFEEEE';
$html .= '<tr bgcolor='.$bgcolor.'><td>'.$row['clave'].'</td><td>'.$row['descripcion'].' </td><td>'.$row['unidad'].'</td><td>'.$marca.'</td><td></td><td> $'.$row['precio'].'</td> <td>'.$row['cantidad'].'</td><td> $'.$total.'</td>';
$html .= '</tr>';
}
$html .='<tr align="center"><th bgcolor="#DCDCDC">TOTAL</th>';
$html .='<tr align="center"><td bgcolor='.$bgcolor.'><font size ="3", color ="red">$'.$numero.'</font></td></tr>';
$html .= '</table> </div>
<div style="position:absolute; margin-top:410px;" >Senda de los Recuerdos No.485<br>Fracc. Milenio C.P. 76209</br> Queretaro, Qro, México</br>Teléfonos: (442) 1611587 </div>
Copyright © 2014 Todos los Derechos reservados
</body>
</html>' ;
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$nombre_archivo="Cotizacion";
//$secuenciadompdf-> ($nombre_archivo, array ('Anexo' => 0));
//$dompdf->output();
//$pdf=$dompdf->stream($nombre_archivo);//metodo para descargar pdf
header('Content-type: application/pdf'); echo $dompdf->output(); // mandar a imprimir en pantalla el pdf
?>