l3lade Posted August 4, 2006 Share Posted August 4, 2006 Sorry about the title im not quite sure what to put. Well basicly im trying to replicate this sort of pagehttp://www.zombiehorde.com/index2.html were when you click on a link it dosnt reload the whole pagejust the iframe, how do i do this?Thanks in advance :) Link to comment https://forums.phpfreaks.com/topic/16543-iframe-page/ Share on other sites More sharing options...
nogray Posted August 4, 2006 Share Posted August 4, 2006 you just need to put an iframe[code]<iframe src="page.html" width="100" height="100" frameborder="0" name="pages_frm"></iframe>[/code]and target your links to the iframe name[code]<a href="other_page.html" target="pages_frm">Page Name</a>[/code] Link to comment https://forums.phpfreaks.com/topic/16543-iframe-page/#findComment-69286 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.