rawr, so I found the sollution I was looking for thanks to insight on Marks part.
include "connect.php";
mysql_select_db("techsys");
$sql = "SELECT * FROM `request`";
$result = mysql_query($sql)
or die("Query Error : " . mysql_error());
while ( $row = mysql_fetch_array($result) ){
echo nl2br($row['description']);
}
(
Read more... )