Since my updated reference book (Beginning PHP 4, Wrox Publishing) doesn't refer to $GET, $POST, or $_REQUEST, I can't figure out how to add a line break between variables returned from an HTML form. Thanks to some of you smart folks, I was able to figure out how to get the information from the form to the PHP script, but now I want to format it. The PHP script reads:
<?php
echo $_POST['Choice1'];
echo $_POST['Choice2'];
echo $_POST['Choice3'];
?>
and returns:
choice1choice2choice3
How can I either add a space between the returned variables, or add a line break after each of the first two returned variables? Any assistance would be greatly appreciated.