-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
  • 22,547
  • 12
  • 59
  • 68
Hamza Najemi
  • 233
  • 3
  • 7
  • 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,433
  • 5
  • 35
  • 55
0

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

Thamer
  • 1,778
  • 2
  • 10
  • 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,385
  • 1
  • 11
  • 20