Hi, I would like to select information from my database then output it but not as rows. IE. $select = "SELECT title, author, description, rating, image, aLocation FROM aArchive"; $query = mysql_query($select); while ($row = @mysql_fetch_array($query,MYSQL_ASSOC)) { $title = $row{'title'...