hi!
i'm new with php,so just trying to work with it. I have a problem with this code:
echo "<a href=\"second.php\" >click here.</a><br />";
I want the 'second.php' page to open in a new window.Can anyone tell me what changes should i make so that when i click on 'click here', the second.php page should open in a new window.
thanks,
binoy
How to get to a new window through hyperlink
Moderator: General Moderators
set the target of the anchor to "_blank"
Code: Select all
<a href="page.html" target="_blank">click me</a>