I am trying to use this with dynamic data these issues
may or may not crop up in normal usage. But the errors
I have come across so far, along with my quick fix
which allows me to produce a pdf...
1:
Error:
Notice: Undefined variable: currentx in pdf\fpdf.php on
line 1008
Quick fix:
I added this line directly above the line error in
question - if( !isset( $currentx ) ) $currentx = 0;
2:
Error:
Notice: Uninitialized string offset: 0 in
pdf\html2fpdf.php on line 429
Quick fix:
Add this line - if( is_array( $path ) ){
before this line - if($path{0} != '#' ) //It is not an
Internal Link
Add the close bracket - }
after this - //Do nothing if it is an Absolute Link
}
Hope this makes sense, if any more details are required
I am willing to try and answer any questions...
Cheers
Matthew