| If you want to record what content is being viewed in an iframe you will have to do it at page generation time with php otherwise you can use javascript to do it at anytime.
<iframe id='myiframe' src='http://www.google.com'></iframe>
then use javascript and document.getElementById('myiframe') to get the src and edit the src. |