Right now I have the following code:
<a href="gallery/index.php?id=12" target="_blank">link</a>
Actually the href is created dynamically for each picture(id) but the static outcome is what I present in the code above. Right now the code is set to open the link in a new window, but that is because I havn't solved the problem yet.
I could also set the code as follows:
<a href="galleri.htm" >link</a>
This link redirect to the gallery page which containes the frame "myframe". But "myframe" is set as follows:
<iframe id="myframe" name="myframe" src="gallery/index.php" width="700" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none">bla bla bla</iframe>
And will as the "src" say display the index.php page. Here I want it to instead display the dynamically made href code from the top code.
Do you follow?