A Nerd Question
Well Mr Netchicken,
Firstly, unless you clear it with the newspaper first, i wouldnt spam them!
Secondly, what is it that you want to open in a new window?
In HTML, you open pages in a new window by placing target="blank" in the <a> tag:
[code:1:65c477e816]<a href="newpage.html" target="blank">New Page</a>[/code:1:65c477e816]
If you want the page the form posts to, to be opened in a new page:
[code:1:65c477e816]<form method="post" action="resultpage.php" target="blank">[/code:1:65c477e816]
If you have any PHP questions, i'll help you out as most of my sites are in PHP.
|