manipulating multiple browser windows

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lee-dont@web-spam-a-me-roonie.net

    manipulating multiple browser windows

    I have a user who is entering information on a form and then submits it.
    The script replies with some data back to the original browser window, but
    I also want the script to open a new browser window to display an image.
    How to do this without offending the "headers already sent" gawdz?

    --Lee
  • Daniel Tryba

    #2
    Re: manipulating multiple browser windows

    lee-dont@web-spam-a-me-roonie.net wrote:[color=blue]
    > I have a user who is entering information on a form and then submits it.
    > The script replies with some data back to the original browser window, but
    > I also want the script to open a new browser window to display an image.
    > How to do this without offending the "headers already sent" gawdz?[/color]

    Browser "windows" are clientside, so you have to use clientside
    technology to create them and call the appropriate URLs. IOW use
    things like javascript.

    --

    Daniel Tryba

    Comment

    • lee-dont@web-spam-a-me-roonie.net

      #3
      Re: manipulating multiple browser windows

      Daniel Tryba <news_comp.lang .php@canopus.nl > wrote:[color=blue]
      > lee-dont@web-spam-a-me-roonie.net wrote:[color=green]
      >> I have a user who is entering information on a form and then submits it.
      >> The script replies with some data back to the original browser window, but
      >> I also want the script to open a new browser window to display an image.
      >> How to do this without offending the "headers already sent" gawdz?[/color]
      >
      > Browser "windows" are clientside, so you have to use clientside
      > technology to create them and call the appropriate URLs. IOW use
      > things like javascript.
      >[/color]

      Arrgh. Thanks.

      --Lee

      Comment

      Working...