Hello,
I have a question, is it somehow possible to make include, require or any other things, so it gets a page like "test.php?tid=$tid" ?
Thanks
depends upon what test.php has in it...but yes...
include('test.php?id=$id');
voila...v
whats with perenthesese?
include'test.php?tid=$tid';
no you cannot include or require like that but you can do this
$_GET['var'] = 'value'; include("page.php");