Link in php want to get that in html
the php process the page once the vistor clicks on the php based link they go to iframe where it is html.
I was looking for a function where I can insert a link call go back to the link and that sould be in html on the frames
j_limboo
Junior Poster in Training
70 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0
Could you explain that? I don't follow you.
diafol
Rhod Gilbert Fan (ardav)
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
//echo "xxxx";
when clicked can it call to open a local file ie rightframe.html
instead of a new blank page
tst.php and rightframe.html are in the same location
I am using very simple html frames. again this is a call when clicked the result or query has to open on rightframe.html
j_limboo
Junior Poster in Training
70 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0
I think I understand
the target attribute of a link should do it
consider a frameset with left and right panes
the left pane includes the menu
the right frame is the display page
index html
dtd
<html>
<head>
<frameset cols='200px,8' >
<frame src='menu.html' name='menu'>
<frame src='display.html' name='display'>
</framest>
menu.html
dtd
<html>
<head>
bla bla
</head>
<body>
<a href='choice1.html' target='display'>page1</a>
<a href='choice2.html' target='display'>page2</a>
<a href='choice3.html' target='display'>page3</a>
</body>
</html>
display.html[code=html]menu.html
dtd
<html>
<head>
bla bla
</head>
<body><center>select from left
</center>
</body>
</html>
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
the index page is in .php
and now it has to open in rightframe.html
do we have any code to pass on to the rightframe
all the hyperlinks are in the php page itself
want to call a right frame which is in html
Not using mysql database
j_limboo
Junior Poster in Training
70 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0
almostbob,
That worked
really you are a life saver man
Thumsup to you
j_limboo
Junior Poster in Training
70 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0