Originally posted by fizzwizz
I'm not sure I understand you.
If you post the variable "animals" with selected value "cat"
It is much the same as the statement
$animals="cat";
so you could echo out the selection
eg echo $animals;
Am I understanding you?
fizzwizz, if you post the variables (and Cat is the one posted) and register globals is off, then this is not a true statement:
$animals = "Cat"
This is true however...
$_POST['animals'] = "Cat"
and you would echo it out as:
echo $_POST['animals'];
UNLESS you declare the variable...
$animals = $_POST['animals'];
echo $animals;