jd2007 Posted July 15, 2007 Share Posted July 15, 2007 Can i display different html pages on different fields of a table ? Link to comment https://forums.phpfreaks.com/topic/60039-html-tables-help/ 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> Link to comment https://forums.phpfreaks.com/topic/60039-html-tables-help/#findComment-298675 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.