How I can define opened script in new windows

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
RedStar
Forum Newbie
Posts: 2
Joined: Mon Oct 28, 2002 8:33 am
Contact:

How I can define opened script in new windows

Post by RedStar »

Dear All.
subj: How I can define opened script in new windows by PHP.
I have two frame. In one frame I have a link to another frame. And I want to know how user press to link - in current window or in new.
How I can define this?

Thank you.
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

Code: Select all

<a href="scriptOne.php">click here to request output from scriptOne</a>
<a href="scriptTwo.php">click here to request output from scriptTwo</a>

<a href="Script.php?selection=One">click here to transmit selection=One via Get</a>
<a href="Script.php?selection=Two">click here to transmit selection=Two via Get</a>
Post Reply