Its rather easy really...
PHP Code:
<?php switch ($_GET['module']) { case 'blah': // Do something here break; case 'gab': // Do something else here break; case 'yuk': // Do something different here break; default: // Do something here if none others above were true } ?>
Data transferred through the url is defined in the $_GET global variable as an array. However, you might need to learn more on php in order to perform the specific tasks you want.
Good PHP tutorials can be found at:
www.w3schools.com
www.htmlgoodies.com
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|