in reply to Displaying values after form is submitted

Modify this:
$fetch_data .= "$field\:\t$value\n\n";
...to be this:
$fetch_data .= "$field\:\t$value<br />";
Remember: you're printing it as HTML, so you'll need HTML line breaks.

-s.