Quote:
Originally Posted by pokemonleague
Thank you, that's exactly what I was looking for.
Any idea how I pass variables through the url when using a plugin?
Code:
include('ladderpanel.php?op=top');
|
You don't have to. VB will pick up the variables which will be in _GET, _REQUEST and perhaps GPC if you have already handled them. Your code can access them directly.
so withing ladderpanel.php you can just have
$op = $_REQUEST['op'];
though I recommend cleaning first.