jd2007 Posted July 15, 2007 Share Posted July 15, 2007 Can i display different html pages on different fields of a table ? Quote Link to comment Share on other sites More sharing options...
lilman Posted July 15, 2007 Share Posted July 15, 2007 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> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.