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'];