Jump to content

HTML Tables help ?


jd2007

Recommended Posts

If I understand correctly, you want to display different HTML pages in different <td> </td> tags. This can be done using some PHP, look at the example below:

 

<table width="100%">

    <tr>

          <td>

              <?php include('folder/fileName.html'); ?>

          </td>

          <td>

              <?php include('folder/fileName2.html'); ?>

          </td>

    </tr>

</table>

Link to comment
https://forums.phpfreaks.com/topic/60039-html-tables-help/#findComment-298675
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.