I apologize, I'm not understanding. If I want to pass a variable such as which function to perform, what do I need to do? I know I need $_GET or $_REQUEST in my ladderpanel.php file to retrieve the variables, but how do I send them to the file?
Quote:
Originally Posted by Eikinskjaldi
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.
|