ok...

so can i do something like...


    +-------------------------------+
    |                               |
    |           user                |
    |              'sub_btn'        |
    |                               |
    |                               |
    |                               |
    |                               |
    |  blah                         |
    |      blah                     |
    |          blah                 |
    |                               |
    |                               |
    |                               |
    +-------------------------------+

in this example, the user/sub_btn is generated from the app B server/system.
the user would then fill in the 'user' and hit the 'sub_btn', causing the
information to be sent back to the app B server.

the app B server would then return a result, based on the user input... i'm
trying to figure out how to essentially allocate a section of the page, to a
remote application. after i've finished with the remote stuff, the user
could go ahead and select other items/buttons on the page that are in the
current environment


    +-------------------------------+
    |                               |
    |         +-------------+       |
    |         |   remote    |       |
    |         |     app     |       |
    |         |    area     |       |
    |         +-------------+       |
    |                               |
    |                               |
    |   local app space....         |
    |                               |
    |  blah                         |
    |      blah                     |
    |          blah                 |
    |                               |
    |                               |
    |                               |
    +-------------------------------+

i'm not sure what's the best approach to this...

thanks

bruce


-----Original Message-----
From: comex [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 10, 2005 5:28 PM
To: php-general@lists.php.net
Subject: Re: [PHP] a code question..??


> in your example, wouldn't app A, essentially download the code from app B,
> and run the source on app A? or would the code be run on app B, with the
> resulting html/content/page being transferred to app A?

If the PHP file has a .php extension, it will be run on the webserver
like any PHP page.  If it is .txt or you set Apache directives, etc.,
it will be transferred to the client app.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to