Emily
Emily

Reputation: 39

Load php file into iframe

I have a website with 3 links at the top. I want to pull up different files into the iframe when the links are clicked. i got the html file to pull up, but i cannot get the php file to pull up.

<a href="records.php" id="records" onClick="changeFrame(this.href); return false">View Records</a>

Upvotes: 1

Views: 3138

Answers (1)

Adam MacDonald
Adam MacDonald

Reputation: 1958

Is this what you are trying to do?

 <a href="http://bing.com" target="myiframe">bing</a>
 <a href="http://google.com" target="myiframe">google</a>
 <iframe src="#" name="myiframe"></iframe>

Upvotes: 4

Related Questions