What i want to do is the following:
include (pagecalled.php ?argument1=x&ar gument2=x ..... );
(I need to place the page somewhere inside another one, as if it had
been called from another link)
Doesn't work this way, but it works providing full path
include 'www.somesite.c om/dir1/dir2/pagecalled.php? argument1=x&arg ument2=x';
As you can see, it would be better without full path, in order to be
able to change server without code rewrite.
Is there any way to solve that situation?
sdos - jm
include (pagecalled.php ?argument1=x&ar gument2=x ..... );
(I need to place the page somewhere inside another one, as if it had
been called from another link)
Doesn't work this way, but it works providing full path
include 'www.somesite.c om/dir1/dir2/pagecalled.php? argument1=x&arg ument2=x';
As you can see, it would be better without full path, in order to be
able to change server without code rewrite.
Is there any way to solve that situation?
sdos - jm
Comment