Re: [PHP] opening a new window from php script

2011-03-28 Thread Ashley Sheridan
On Mon, 2011-03-28 at 17:44 +0200, Grega Leskovšek wrote: > I would still like to offer in my CMS to be able to choose in which > browser I want to display the current page. Is this possible or I in > program can open only default browser? Can I at least choose wheter to > open a new tab or a new

Re: [PHP] opening a new window from php script

2011-03-28 Thread Grega Leskovšek
I would still like to offer in my CMS to be able to choose in which browser I want to display the current page. Is this possible or I in program can open only default browser? Can I at least choose wheter to open a new tab or a new window? Thanks in advance, -- When the sun rises I receive and whe

Re: [PHP] opening a new window from php script

2011-03-27 Thread Richard Quadling
On 26 March 2011 10:22, Ashley Sheridan wrote: > On Fri, 2011-03-25 at 18:05 -0700, Tommy Pham wrote: > >> On Fri, Mar 25, 2011 at 2:59 PM, Grega Leskovšek wrote: >> > I am working on CMS designed to those who are unfamiliar  with a >> > computer world and I want to offer a task where on a push o

Re: [PHP] opening a new window from php script

2011-03-26 Thread Ashley Sheridan
On Fri, 2011-03-25 at 18:05 -0700, Tommy Pham wrote: > On Fri, Mar 25, 2011 at 2:59 PM, Grega Leskovšek wrote: > > I am working on CMS designed to those who are unfamiliar with a > > computer world and I want to offer a task where on a push of a button > > it will save current working page in te

Re: [PHP] opening a new window from php script

2011-03-25 Thread Tommy Pham
On Fri, Mar 25, 2011 at 2:59 PM, Grega Leskovšek wrote: > I am working on CMS designed to those who are unfamiliar  with a > computer world and I want to offer a task where on a push of a button > it will save current working page in textarea/s and open this page in > a new tab or in a new window.

Re: [PHP] Opening a new window from Header Location or any other way

2008-04-22 Thread Chris Braiotta
You do need javascript to do this. Look into the "window.open()" function to open your other window, and then something like "self.close()" to close the login window. --c On Sun, Apr 20, 2008 at 2:45 PM, Richard Kurth <[EMAIL PROTECTED]> wrote: > I have my login.php file that when I access the lo

RE: [PHP] Opening a new window.

2001-12-14 Thread Michael J. Seely
someone >having to click a link. > >Thanks Brandon > >-Original Message- >From: Mark Charette [mailto:[EMAIL PROTECTED]] >Sent: Friday, December 14, 2001 2:08 PM >To: PHP User Group >Subject: RE: [PHP] Opening a new window. > >I would use "target="_b

RE: [PHP] Opening a new window.

2001-12-14 Thread Richard S. Crawford
Generally, I agree with you. Sometimes a small, no-controls window can be useful, though, if all it is is a spinoff form that closes as soon as it passes data to a CGI-script. At 03:00 PM 12/14/2001, Mark Charette wrote: >Nope - just opens a new window. > >Of course, personally, I'd like to t

RE: [PHP] Opening a new window.

2001-12-14 Thread Mark Charette
Nope - just opens a new window. Of course, personally, I'd like to take those people who turn off the toolbars and back buttons and whatevers on _my_ windows and put them in a speeding car down some highway with no brakes, no steering, a locked down accelerator, and no door handles ... "hey, budd

RE: [PHP] Opening a new window.

2001-12-14 Thread Richard S. Crawford
You can't really specify target window properties in straight HTML without getting rid of JavaScript. For what it's worth, here is a bit of JavaScript that I use on my home page to spawn a small window: function my_win() { window.open('mailsend.html','mywindow','width=333,height=410,toolbar=no

RE: [PHP] Opening a new window.

2001-12-14 Thread Richard S. Crawford
Do you mean having it open a window as the page is loading? Just include the javascript to open the new window in the tag, using the onLoad attribute. Of course, once the page has been loaded, you have to rely on JavaScript to do everything, because PHP only works on the server and not the

RE: [PHP] Opening a new window.

2001-12-14 Thread Mehmet Kamil ERISEN
that's a great point. Can you specify the target browser properties using html? Lise the Location bar, or the toolbar? I was actually using little popups with jscript. If I can get rid of JS that would be great. --- Mark Charette <[EMAIL PROTECTED]> wrote: > I would use "target="_blank" in the an

RE: [PHP] Opening a new window.

2001-12-14 Thread Brandon Orther
To: PHP User Group Subject: RE: [PHP] Opening a new window. I would use "target="_blank" in the anchor tag so it would work just fine _without_ javascript ... Mark C. -Original Message- From: Mehmet Kamil ERISEN [mailto:[EMAIL PROTECTED]] I would use javascript for th

RE: [PHP] Opening a new window.

2001-12-14 Thread Mark Charette
I would use "target="_blank" in the anchor tag so it would work just fine _without_ javascript ... Mark C. -Original Message- From: Mehmet Kamil ERISEN [mailto:[EMAIL PROTECTED]] I would use javascript for that. --- Brandon Orther <[EMAIL PROTECTED]> wrote: > Does anyone know how I cou

Re: [PHP] Opening a new window.

2001-12-14 Thread Mehmet Kamil ERISEN
I would use javascript for that. --- Brandon Orther <[EMAIL PROTECTED]> wrote: > Does anyone know how I could have php open a new windows > with the url I > specify? > > Thanx, > Brandon > = Mehmet Erisen http://www.erisen.com __ Do You Y