Martina Mania - 2019-04-29 09:33:04
Hi Dave
I know this is 3 years old, but it looks good to use now.
My api key is set and registered @ https://pdflayer.com/
The endpoint is set to default ...
private $endPoint = 'https://api.pdflayer.com/api/convert';
My secretKey is set and registered @ https://pdflayer.com/
Trying Example/basic:
<?php
/*
Basic instantiation and usage
*/
include('../html2pdf.class.php');
$h2pdf = new html2pdf();
//set the url to convert
$h2pdf->setParam('document_url','https://www.xxx.com.');
//start the conversion
$h2pdf->convertHTML();
//display the pdf file
$h2pdf->displayCapture();?>
Using remote server I get Blank page.
As far as i can tell configuration is fine..
any clues
regards emmdee