Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-16-2012, 07:26 AM   PM User | #1
roybarton
New to the CF scene

 
Join Date: Nov 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
roybarton is an unknown quantity at this point
PHP code help

I need to set the hyperlink in the following code to open in a new window, any advice?

$b8 = "Permit" ; $l8 = "http://www.mcfederation.com/FORMS/PERMITAPPLICATIONFORM.aspx"; $w8 = 91;
roybarton is offline   Reply With Quote
Old 11-16-2012, 07:29 PM   PM User | #2
mlseim
Master Coder

 
mlseim's Avatar
 
Join Date: Jun 2003
Location: Cottage Grove, Minnesota
Posts: 9,055
Thanks: 8
Thanked 1,032 Times in 1,023 Posts
mlseim has a spectacular aura aboutmlseim has a spectacular aura aboutmlseim has a spectacular aura about
You can't use PHP header to open URL in new window.
This is something that happens "client side", not "server side".

I have a question though ...

You're opening the new window from where?

If you're on a page and execute a PHP script, the server will overwrite your current page.

Or maybe you mean opening the URL in a new window with a link?
Is that what you mean?

A link like this?
PHP Code:
<?php

$b8 
"Permit" $l8 "http://www.mcfederation.com/FORMS/PERMITAPPLICATIONFORM.aspx"$w8 91;

echo 
"<a href='$l8' target='_blank'>Open Page in new window</a>";

?>

If it's not opening a new window with an HTML link, you'll need to use javascripting or AJAX.



.

Last edited by mlseim; 11-16-2012 at 07:50 PM..
mlseim is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:00 AM.


Advertisement
Log in to turn off these ads.