Good afternoon: I have the following PHP Code and I am using the FPDF library
while($productos2 = mysql_fetch_array($productos)){
$item = $item+1;
$pdf->Cell(5, 8 ,$item, 1);
$pdf->Cell(10, 8 ,$productos2['FOLIO'], 1);
$pdf->Cell(70, 8 ,$productos2['NOMBRE'], 1);
$pdf->Cell(25, 8 ,date("d-m-Y",strtotime($productos2['FECHA_SOLICITUD'])), 1);
$pdf->Cell(25, 8 ,$productos2['TIPO_AUTORIZACION'], 1);
$pdf->Cell(25, 8 ,date("d-m-Y",strtotime($productos2['FECHA_AUTORIZACION'])), 1);
$pdf->Cell(20,8 , '<a href="http://www.gb.intragruver.com/mb/rprh06/final.php?folio=$productos2["FOLIO"]" target="_blank">Enlace</a>',1);
$pdf->Ln(8);
I would like you to show me in the last column the link to click and go to that page. The problem is that I do not know what the correct syntax is. I've already been removing the single quotes for doubles and nothing.
This is what throws me
Passing the pointer over the link I get this
And I want that when you click on it, send me to the page that refers to the folio
Could you please help me? Thanks