Well actually, since it appears you are just creating easier to type variables (from the Super Global Array of $_POST ), you could do what I often like to do.
foreach ($_POST as $index => $content) {
$$index = $content; //note the DOUBLE $ for $$index
}
This will take a LONG list of POSTed variables and convert them into a local variable with the same name as the index. It will also avoid the ISSET since it will only create a local variable if it was POSTed.
Paul Gardner
------------------
PHP-LIVE help
Via Web @
http://www.mnetweb.co.uk/irc
Via IRC Client pgardner.net:6667
room #PHP