PHP - FPDF | How to make a table from PHP variable containig HTML code using FPDF? -
so have php
variable containing html
code table
. content of php
variable :
<thead> <tr> <th>fisrt column </th> <th>second column</th> </tr> </thead> <tbody> <tr class="placeholderrow"> <td><input name="myname1" id="myid1" value="1" disabled="disabled" type="text"></td> <td><input name="myname2" id="myid2" value="des" type="text"></td> </tr> </tbody>
i want make table content of variable using fpdf
, possible ? , how can done?
Comments
Post a Comment