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 :) Quote 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] Quote Link to comment https://forums.phpfreaks.com/topic/16543-iframe-page/#findComment-69286 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.