I couldn't think of a concise way to describe this in the Subject!
Anyways...
I am creating a PHP/MySQL driven website. I would like to provide
other users a sort of customized front-end PHP script which they can
install on their own server which will basically act as an alias for
my site; that is, when someone goes to WWW.THEIR-SITE.COM they
actually see and interract with the content on WWW.MY-SITE.COM,
passing back and forth the same GET, POST, and COOKIE vars (uh...
that's all I need, right?). I don't just want to forward/redirect
them to my site; I want the user to use WWW.THEIR-SITE.COM in the URL
and any links in the page (this front-end script would also contain
some kind of authentication for "connecting " to my site - but one
thing at a time!).
I've tinkered with:
INCLUDE() - causes problems by using relative paths.
FILE_GET_CONTEN TS() - see the content well, but can't see GET and POST
vars.
Any suggestions for a solution or at least a better set of keywords to
search the newsgroups? Thanks in advance for any help!
Anyways...
I am creating a PHP/MySQL driven website. I would like to provide
other users a sort of customized front-end PHP script which they can
install on their own server which will basically act as an alias for
my site; that is, when someone goes to WWW.THEIR-SITE.COM they
actually see and interract with the content on WWW.MY-SITE.COM,
passing back and forth the same GET, POST, and COOKIE vars (uh...
that's all I need, right?). I don't just want to forward/redirect
them to my site; I want the user to use WWW.THEIR-SITE.COM in the URL
and any links in the page (this front-end script would also contain
some kind of authentication for "connecting " to my site - but one
thing at a time!).
I've tinkered with:
INCLUDE() - causes problems by using relative paths.
FILE_GET_CONTEN TS() - see the content well, but can't see GET and POST
vars.
Any suggestions for a solution or at least a better set of keywords to
search the newsgroups? Thanks in advance for any help!
Comment