Jump to content

Printing Variable Value in side EOD


elabuwa

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.