Ver Mensaje Individual
  #6 (permalink)  
Antiguo 19/08/2015, 08:21
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 9 años, 4 meses
Puntos: 263
Respuesta: formulario de php a fpdf y BD

y porque no lo intentas asi;
Código PHP:
Ver original
  1. <html>
  2. <head>
  3. <title>Formulario</title>
  4. </head>
  5. <body>
  6. <form name="Formulario" action="pdf.php" method="POST">
  7. <table border="0">
  8. <tr>
  9. <td>Nombre:</td>
  10. <td><input type="text" name="nombre" /></td>
  11. </tr>
  12. <tr>
  13. <td>Apellido:</td>
  14. <td><input type="text" name="apellido" /></td>
  15. </tr>
  16. <tr>
  17. <td>Estado civil:</td>
  18. <td><input type="text" name="estado" /></td>
  19. </tr>
  20. <tr>
  21. <td>Cuit:</td>
  22. <td><input type="text" name="cuit" /></td>
  23. </tr>
  24. <tr>
  25. <td>Detalle:</td>
  26. <td><textarea style="width:300px;height:250px;" name="descripcion"></textarea></td>
  27. </tr>
  28. <tr>
  29. <td colspan="2"><input type="submit" name="formulario[enviado]" value="enviar" /></td>
  30.  
  31. </tr>
  32. </table>
  33. </form>
  34. </body>
  35. </html>
  36.  
  37. pdf.php
  38.  
  39.  
  40. <?php
  41. require('fpdf/fpdf.php');
  42. $nombre = $_POST['nombre'];
  43. $apellido = $_POST['apellido'];
  44. $estado = $_POST['estado'];
  45. $cuit = $_POST['cuit'];
  46. $descripcion = $_POST['descripcion'];
  47.  
  48. $pdf=new FPDF();
  49.  
  50.  
  51.  
  52.  
  53. $pdf->SetFont('Arial','',14);
  54. $pdf->AddPage();
  55. $pdf->Cell(($pdf->w-20),20,'',0,1);
  56.  
  57.  
  58. $pdf->Cell(25,10,'Nombre:',0,0,'R');
  59. $pdf->Cell(30,10,$nombre,0,0);
  60. $pdf->Cell(($pdf->w -110),10,'',0);
  61. $pdf->Cell(10,10,'Fecha:',0,0,'R');
  62. $pdf->Cell(20,10,date('d/m/Y'),0,1,'L');
  63.  
  64. $pdf->Cell(25,10,'Apellido:',0,0,'R');
  65. $pdf->Cell(30,10,$dapellido,0,1);
  66.  
  67. $pdf->Cell(25,10,'Estado civil:',0,0,'R');
  68. $pdf->Cell(30,10,$estado,0,1);
  69.  
  70. $pdf->Cell(25,10,'Cuit:',0,0,'R');
  71. $pdf->Cell(30,10,$cuit,0,1);
  72.  
  73. $pdf->Cell(25,10,'Descripcion:',0,1,'R');
  74. $pdf->Cell(25,10,'',0,0);
  75. $pdf->MultiCell(0,5,$descripcion,1,1);
  76.  
  77. $pdf->Output();
  78. ?>
claro con domPDF yo no he tenido esos rollos, pero intenta asi a ver
__________________
[email protected]
HITCEL