setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING); $rows = $db->query("select * from mountain order by height desc"); echo ""; while( $cols = $rows->fetch() ){ echo ""; } echo "
"; echo $cols["name"]; echo ""; echo $cols["height"]; echo "
"; ?>