Quote:
Originally Posted by kiril_cvetkov
thanks and please one more question
how to make ex. " file.php?cat=1?thread=5 " double id's!!!
|
If I am understanding you correctly, you are wanting to know how to pass and fetch multiple parameters. First, you separate variables in the URL using the ampersand. So, your URL query string should be: http://www.yoursite.com/file.php?cat=1
&thread=5
As to getting those variables, here is a link the vBulletin manual that explains using vBulletin's built in functions for accessing $_GET, $_POST, and $_REQUEST:
http://www.vbulletin.com/docs/html/codestandards_gpc
Note that in the example code, the code highlighted in red is the undesirable method.