I have a form have the code
<form action='$this->results_page' name='pollf' id='pollf' method='get'>
On submit the result page is opened in the same window. I want to open it in a separate window. Is it possible.
Use the target attribute in the form tag, e.g. target="_blank" for a new browser window.