I would like to use some parameters inside of my include(). Here's what I found:
This format does not work:
include('../../file/edit_file.php?foo=1&bar=2');
But this format works:
include('http://www.mysite.com/file/edit_file.php?foo=1&bar=2');
Although it works, I still have question about this issue. Is there any other solution that can use parameters inside of include()?
Thank you!