Hi, I have a little question. When I add a page and write the address where I wat to be redirected everything is fine. But how to add address (link) with target=_about blanc
PHP cannot control browser behavior. HTML and JS can. The simple solution that you are probably overlooking is to use target="_blank" in the actual link to your redirecting page. This will open in a new window and the page that is in the "address" field of the redirecting page loads.
So you link to a redirecting page like this: <a href="http://www.yourserver.com/?yourredirectingpage,55" target="_blank">this will open your redirecting page in new window</a>