elabuwa
11-10-2011, 09:05 AM
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
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