bamse Posted June 9, 2007 Share Posted June 9, 2007 Hi, First, sorry my English! I want a way to write my PHP script… I’m trying to figure out a nice way… does this look OK? <?php // Setting $db, $screen etc. // require_once('init.php'); /** * Main function! */ function main(&$db, &$screen, &$config) { $functions = array( 'something' ); if (isset($_GET['do']) && !empty($_GET['do']) && in_array($_GET['do'], $functions) && function_exists($_GET['do'])) { call_user_func($_GET['do'], $db, $screen, $config); } else { index($db, $screen, $config); } $screen->display(); } /** * Fronpage */ function index(&$db, &$screen, &$config) { $screen->set('var', 'value!'); } /** * Add news */ function addNews(&$db, &$screen, &$config) { $screen->set('var', 'value!'); } main($db, $screen, $config); ?> Or would you write it another way, if so, how? Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.