What are the potential reasons for the error "Class 'HTML2PDF' not found" in PHP?

The error "Class 'HTML2PDF' not found" in PHP typically occurs when the HTML2PDF class is not properly included or loaded in the script. To solve this issue, make sure that the HTML2PDF class file is included or required in your PHP script before trying to instantiate an object of that class.

// Include the HTML2PDF class file
require_once('path/to/HTML2PDF.php');

// Instantiate the HTML2PDF class
$pdf = new HTML2PDF();