Re: [PHP] Re: Calling functions from Button actions

2003-09-14 Thread Daniel Souza
I dont use it. Its just an example. Thanks anyway. Daniel "Marek Kilimajer" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > I hope you don't use this method. It is VERY unsafe. You execute ANY > function that the user tells you. > > Daniel Souza wrote: > > >function func1()

Re: [PHP] Re: Calling functions from Button actions

2003-09-14 Thread Marek Kilimajer
I hope you don't use this method. It is VERY unsafe. You execute ANY function that the user tells you. Daniel Souza wrote: if (isset($_REQUEST['funcs'])) foreach ($_REQUEST['funcs'] as $key=>$val) if (function_exists($key)) $key(); ?> -- PHP General Mailing

[PHP] Re: Calling functions from Button actions

2003-09-13 Thread Daniel Souza
$val) if (function_exists($key)) $key(); ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php