Hello,
I was wondering if I could use the php Inlcude function like frames.
If I have some content on the left and I click on a link (target: right), can I display the right page, without losing the content on the left?
- Linux
Php Include like frames
Moderator: General Moderators
non include is not like a function..
but IN your include you could have html frame written..
but the include alone only take your whole code and past it
but IN your include you could have html frame written..
but the include alone only take your whole code and past it
Code: Select all
page1Code: Select all
echo("I am very sexy");Code: Select all
page2Code: Select all
include("page1.php");
<a href="#">testing</a>
you could have whatever u wantCode: Select all
ResultCode: Select all
I am very sexy
<a href="#">testing</a>
you could have whatever u want