Hi all,
can I put a function_name() in the <form action="..."> place holder? I know I can use a file name, but it would be much better (for me) if I could use a function name.
Thanks in advance
Al
<form action="script.php?action=edit">
script.php:
switch($_GET['action']) {
case 'edit':
edit();
break;
....}
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

