when I run this I get the following error:
Fatal error: Call to undefined function: array() in /scripts/tinytext.php on line 35
Code on line 35 is as suggested:
$tinytext = $_GET($row["Contact_Details"]);
This following line works fine and returns data to the browser:
echo nl2br($row["Contact_Details"]);
Thanks TobyRT nl2br has solved the problem and was exactly what I was looking for. Cheers.