This the my code a CV that I want to create an MPDF with and underneath I have the MPDF code that is on another page. The content is appearing on the pdf but with php echo values when i want the actual php values instead
<?php
//Image upload
$uploaddir = "images\\";
$uploadfile = $uploaddir . $userTime . basename($_FILES['myimg']['name']);
move_uploaded_file($_FILES["myimg"]["tmp_name"], "$uploadfile");
$_SESSION['myimg'] = $uploadfile;
if(isset($_FILES['myimg'])){
$file = $_FILES['myimg']['name'];
//echo "" .$file;
//echo "<img src='" . $file . "'>";
echo '<img src="' . $uploadfile . '" width="40%" height="40% "/>';
}
?>
<p>First Name<br><?php echo $fullName;?></p>
<p>Email Address<br><?php echo $emailAddress;?></p>
<p>Phone Number<br><?php echo $phoneNumber;?></p>`enter code here`
<p>College<br><?php echo $theEducation;?></p>
<p>Course<br><?php echo $theCourse;?></p>
<?php
require_once __DIR__ . '/vendor/autoload.php';
$mpdf = new \Mpdf\Mpdf();
// $mpdf->WriteHTML(file_get_contents('build.php'));
$mpdf->Output();
//$mpdf->Output('filename.pdf','F');
?>