Re: POST form to dynamic page name



The problem with this is you can't post the form on a header redirect.
There are a couple of ways around it.

excellent point, i didn't think far enough ahead.

leaving JS out of this problem (just for fun)...what about dynamically
using a SSI?

$option = $_POST['option'];
$option_safe = //do validation
include_once "$option_safe.php";

.