How do you redirect froma Iframe to its parent?

do you use the header("Location = '...") function?

Thanks

    in your iframe file
    I assumed that your script has a link outside

    <a href="make.htm" target="_top">test</a>

      You need to use javascript (or similar) as a PHP is server sid so can only change the initial output of a page.

      use something like:

      <script>
      parent.location = "blah.php"
      </script>
      
        Write a Reply...