From: jim k. <kr...@ho...> - 2001-07-31 15:50:42
|
Andreas, These sound like great ideas. I should be releasing a new major version of PME in two weeks with a bunch of new features. Can I make some guesses as to how the interface would look? Jump: Select box with page numbers For the callback, how would you do it? I've thought it'd be wise to emulate SQL triggers and use include files as stored procedures, so an array like this in the code generated by SETUP.PHP: $triggers['ins']['pre'] = something; $triggers['ins']['post'] = something; $triggers['upd']['pre'] = something; $triggers['upd']['post'] = something; $triggers['del']['pre'] = something; $triggers['del']['post'] = something; where something is either a filename or an unevaluated code fragment passed to eval() later on. I'd prefer the include file, myself, due to issues with quoting and with eval(). In the PME.inc file, do conditional includes or evals on these somethings. Any thoughts on the fact that MySQL doesn't have native transactions? --jim -----Original Message----- From: php...@li... [mailto:php...@li...]On Behalf Of Andreas Umbach Sent: Tuesday, July 31, 2001 5:52 AM To: php...@li... Subject: [PHPMyEdit-Discuss] PHPMyEdit ideas Hi, I have a few ideas about how to make PHPMyEdit even more useful, and I'm willing to contribute a bit. First things that popped on my mind today: - I want to be able to jump directly to page 5, when Page 1 / 8 is displayed - I want to add a callback that gets called before the new record is updated in the database (for example to auto-generate a password field) - Andreas -- Check out my 3d lightcycle game GLtron at http://www.gltron.org/ More than 200'000 downloads of the latest version (0.61) _______________________________________________ Phpmyedit-discuss mailing list Php...@li... http://lists.sourceforge.net/lists/listinfo/phpmyedit-discuss |