Hello, I was hesitate if this should be posted in the HTML forums or the PHP forums but I think This is the right place. I have an Iframe page with an image button the href for this button is "?id=xxx" But when a user clicks the button inside the Frame they are taken to "?id=xxx" Inside the Iframe page Is there any possible way to make the mother page Direct to that address instead ? To make it easier is there any way to transfer data from an Iframe to the original page ? Thanks in advance, Kind Regards, Issa Shamoun.
you can add a target attribute with _parent or _top value... <a href="somepage.php?id=xxx" target="_parent">... HTML: or <a href="somepage.php?id=xxx" target="_top">... HTML: