elabuwa Posted November 10, 2011 Share Posted November 10, 2011 Hi guys, I'm using this EOD thingi in order to print a table and get it PDF. I am using TCPDF and following their examples to get the PDF output. I need to print a php variable's value within the EOD. Can you please help me out. Below is the piece of code I'm running. $tbl = <<<EOD <table cellspacing="0" cellpadding="1" border="1"> <tr> <td rowspan="4"><img src="images/m24.jpg"></td> <td align="right" width="150">From the desk of</td> <td>: $contat</td> </tr> <tr> <td align="right">E-Mail</td> <td>: $email</td> </tr> <tr> <td align="right">Telephone</td> <td>: $telephone</td> </tr> <tr> <td align="right">Mobile</td> <td>: $mobile</td> </tr> </table> EOD; the $variables are simply ignored. or even if I echo, there is no PHP value. Can you guys please shed some light on this issue. Pretty pleeeaaassseee Link to comment https://forums.phpfreaks.com/topic/250850-printing-variable-value-in-side-eod/ Share on other sites More sharing options...
elabuwa Posted November 10, 2011 Author Share Posted November 10, 2011 Sorry guys. Apparently the stupid SQL query had a issue. It is sorted. By the way I found that {$var_name} should echo it as well. Link to comment https://forums.phpfreaks.com/topic/250850-printing-variable-value-in-side-eod/#findComment-1286969 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.