I'm trying to set up a generator system of Vouchers/Tickets
I have a table in SQL with the name Vouchers with multiple users and their respective passwords.
I call each cell the variable $serial_voucher
and $senha_voucher
But it only shows the first line and applies to all Cell .
Thank you, I'm grateful if anyone can give me that strength.
<?php$con=mysqli_connect('localhost','root','');mysqli_select_db($con,'voucherss');$query=mysqli_query($con,"select *from vouchers");
while($data=mysqli_fetch_array($query)){
//A4 WIDTH : 219MM
require ('pdf/fpdf.php');
$pdf = new Fpdf ('p','mm','A4');
$pdf->AddPage();
$pdf->Image("imagemfundo.jpg", 0,0,210,295);
$pdf->SetFont('Arial','','8');
$pdf->SetY( 20.3 );///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['serial_voucher'],0,0,'L'); /////ESQUERDA 1
$pdf->SetY( 28.1);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['senha_voucher'],0,0,'L'); /////ESQUERDA 1
$pdf->SetY( 20.3);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 177.8 ); ///LADOS
$pdf->Cell( 0,10, $data['serial_voucher'], 0, 0, '' ); /////DIREITA 1
$pdf->SetY( 28.4); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 177.8 ); ///LADOS
$pdf->Cell( 0,10, $data['senha_voucher'], 0, 0, '' ); /////DIREITA 1
$pdf->SetY( 78.8 ); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['serial_voucher'],0,0,'L'); /////ESQUERDA 2
$pdf->SetY( 86.3); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['senha_voucher'],0,0,'L'); /////ESQUERDA 2
$pdf->SetY( 78.5); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['serial_voucher'], 0, 0, '' ); /////DIREITA 2
$pdf->SetY( 86.3);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['senha_voucher'], 0, 0, '' ); /////DIREITA 2
$pdf->SetY( 136.5);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['serial_voucher'],0,0,'L'); /////ESQUERDA 3
$pdf->SetY( 144.3);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['senha_voucher'],0,0,'L'); /////ESQUERDA 3
$pdf->SetY( 136.5);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 177.8 ); ///LADOS
$pdf->Cell( 0,10, $data['serial_voucher'], 0, 0, '' ); /////DIREITA 3
$pdf->SetY( 144.4); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 177.8 ); ///LADOS
$pdf->Cell( 0,10, $data['senha_voucher'], 0, 0, '' ); /////DIREITA 3
$pdf->SetY( 194.8 ); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['serial_voucher'],0,0,'L'); /////ESQUERDA 4
$pdf->SetY( 202.7); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['senha_voucher'],0,0,'L'); /////ESQUERDA 4
$pdf->SetY( 194.8); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['serial_voucher'], 0, 0, '' ); /////DIREITA 4
$pdf->SetY( 202.7);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['senha_voucher'], 0, 0, '' ); /////DIREITA 4
$pdf->SetY( 252.8 ); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['serial_voucher'],0,0,'L'); /////ESQUERDA 5
$pdf->SetY( 260.6); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 74 ); ///LADOS
$pdf->Cell(0,10,$data['senha_voucher'],0,0,'L'); /////ESQUERDA 5
$pdf->SetY( 252.8); ///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['serial_voucher'], 0, 0, '' ); /////DIREITA 5
$pdf->SetY( 260.6);///PRA CIMA OU PRA BAIXO
$pdf->SetX( 178 ); ///LADOS
$pdf->Cell( 0,10, $data['senha_voucher'], 0, 0, '' ); /////DIREITA 5
$pdf->Output();
}?>