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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -