IMO, this is what I'd do.
PHP Code:
$sql = "SELECT exhibition_name, artists, date, description FROM future ORDER BY id ASC;";
$result = mysql_qyery($sql);
$row = mysql_fetch_array($result);
echo '<p>' . $row[0] . '</p>';
echo '<p>' . $row[1] . '</p>';
echo '<p>' . $row[2] . '</p>';
echo '<p>' . $row[3] . '</p>';
You could also use the row names
PHP Code:
echo '<p>' . $row['exhibition_name'] . '</p>';
echo '<p>' . $row['artists'] . '</p>';
echo '<p>' . $row['date'] . '</p>';
echo '<p>' . $row['description'] . '</p>';
But as redsox said, there really isn't necessarily a "best" way.