Hi all!
Wondering if it's possible to require a php file outside the current domain name at another domain name location...
Also wondering if it's possible for SESSION variables to remotely be shared between two independent domain names also.
Thanks
you can [man]include[/man] and [man]require[/man] remote files if allow_url_fopen is enabled in your php.ini.
if the 2 domians are on the same physical server then you can access the session directly. if not then i suggest you stick the data in a database temp table that both server can mutually access.