How do I configure php so that I don't have to initialize variables I capture from a form? For example, I dont want to have to do this:
$formfield=$_POST['formfield'];
I want to be able to use $formfield without having to type the above code for every field in my forms.
Thanks.