Simply like this :
<?php
echo $_POST['Choice1'] . "<BR/>\n";
echo $_POST['Choice2'] . "<BR/>\n";
echo $_POST['Choice3'] . "<BR/>\n";
?>
The explications...
echo is used to output data.
You can simply output some text without any variable...
echo "Hi ! My name is Suntra.";
You can output only one variable...
echo $variable;
You can output text and variable(s)...
echo "Hi $visitor_name ! My name is Suntra.";
You can output text and variable(s) from an array...
echo "Hi $_REQUEST[visitor_name] ! My name is Suntra.";
You can also output text and variable(s) this way :
echo "Hi " . $visitor_name . " ! My name is suntra.";
For variable(s) from an array...
echo "Hi " . $_REQUEST["visitor_name"] . " ! My name is suntra.";
The principle is simple...
echo "[text]" . [phpcode principally variables] . "[text 2]" . [phpcode 2] (...) . "text n] . [phpcode n];
Is it clear enough ?! I'm not sure... !