You just echo any data in the array wherever you want as Junsee pointed out.
PHP Code:
include_once('mysql.php');
$sql = "SELECT * FROM image; ";
while ($row = mysql_fetch_array ($rs)){
$id = $row['id'];
$alt = $row['alt'];
$name = $row['name'];
$title = $row['title'];
$description = $row['description'];
echo "Name : ".$name;
echo "title : ".$title;
echo 'Image: \r\n<img src="getimage.php?id=' . $id . '" alt="' . $alt . '" title="' . $name .'"/> <br />';
echo "Description : ".$description;
}