-1

Im using codeigniter but I have a problem when i want to convert my data to pdf using tcpdf

this is the problem :

Picture problem

can you help me ??

Jakuje
  • 24,773
  • 12
  • 69
  • 75
Hamza Najemi
  • 243
  • 3
  • 9
  • 15
  • Possible duplicate of [PHP: "Notice: Undefined variable", "Notice: Undefined index", and "Notice: Undefined offset"](https://stackoverflow.com/questions/4261133/php-notice-undefined-variable-notice-undefined-index-and-notice-undef) – Kirk Beard Jun 12 '17 at 13:43

3 Answers3

3

In my case, I had non-valid TABLE tag (missing quote sign). when validating it, the error was solved.

Atara
  • 3,523
  • 6
  • 37
  • 56
0

replace cellspacingx by @cellspacingx, this notice display just in developer envirement

Thamer
  • 1,896
  • 2
  • 11
  • 20
0

Go to file tcpdf/tcpdf.php and on line 18114 replace $cellspacingx with @$cellspacingx.

Other way can be turn off notices error reporting in your controller using error_reporting(E_ERROR);

Rahi
  • 1,435
  • 1
  • 12
  • 20