Steve Fulleylove wrote:

Hi all,

I have a PHP web site that uses frames.  I can use the header() function to
redirect the user to a new page, but can I use this function to load a page
into a different frame ?

header() (and PHP) won't make it, you need some javascript :


<script>
parent.name_of_the_frame.location = "url";
</script>

Mehdi


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to