rbrennan Posted November 2, 2008 Share Posted November 2, 2008 Hello, I've built a table with PHP includes. My question is how do I select a link on one page(cell) in the table and have it launch in the content(another cell) page. My index.php looks like this: <table width="100%" border="1"> <tr> <td colspan="2"><?php require_once('header.php'); ?></td> <td width="100%"><?php require_once('spare.php'); ?></td> </tr> <tr> <td width="24%"><?php require_once('menu.php'); ?></td> <td colspan="2"><?php require_once('content.php'); ?></td> </tr> <tr> <td colspan="3"><?php require_once('footer.php'); ?></td> </tr> </table> How to I put a <a HREF="<URL>"> on the menu.php page and have it open in the cell that is currently included with content.php? Thanks, Ron Link to comment https://forums.phpfreaks.com/topic/131078-php-table-includes/ Share on other sites More sharing options...
Flames Posted November 2, 2008 Share Posted November 2, 2008 i think your looking for iframes, google them. (thats HTML not PHP) Link to comment https://forums.phpfreaks.com/topic/131078-php-table-includes/#findComment-680541 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.