我在PHP中具有以下形式,该形式包括用户提交其信息(包括图片)。
<html>
<head>
</head>
<body>
<form action="respuestapdf2.PHP" method="post" enctype="multipart/form-data">
<fieldset>
<table>
<tr>
<td>Employee picture:</td>
<td><input type="file" name="archive" size="30" id="archive" required</td>
</tr>
<tr>
<td><input type="submit" value="Register"</td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
<?php
require('fpdf16/fpdf.php');
$foto=$_FILES['archive']['name'];
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Ln(20);
$pdf->Image($foto,18,13,33);
$pdf->Output();
?>