Opening a new window?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Keith

    Opening a new window?

    All:
    Is there a way through PHP to open up a new window in PHP and run another program in it as you would in
    Javascript? Is there a way to call a Javascript function from within a PHP script?

    Keith
  • Gordon Burditt

    #2
    Re: Opening a new window?

    > Is there a way through PHP to open up a new window in PHP and run[color=blue]
    >another program in it as you would in
    >Javascript? Is there a way to call a Javascript function from within a
    >PHP script?[/color]

    PHP runs on the server. Javascript runs on the client.

    PHP can write HTML and Javascript that will be run on the client,
    however, and that's probably how you accomplish what you want.

    Gordon L. Burditt

    Comment

    • Keith

      #3
      Re: Opening a new window?

      On Fri, 23 Sep 2005 19:47:42 -0000, gordonb.5bwx5@b urditt.org (Gordon Burditt) wrote:
      [color=blue][color=green]
      >> Is there a way through PHP to open up a new window in PHP and run
      >>another program in it as you would in
      >>Javascript? Is there a way to call a Javascript function from within a
      >>PHP script?[/color]
      >
      >PHP runs on the server. Javascript runs on the client.
      >
      >PHP can write HTML and Javascript that will be run on the client,
      >however, and that's probably how you accomplish what you want.
      >
      > Gordon L. Burditt[/color]


      Gordon:
      Thanks!

      Keith

      Comment

      Working...