I try to make up something from the comments and your answers to them, maybe it's what you want:
\documentclass[11pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
\section{Start}
Welcome to the \label{here}reference
\newpage
\section{Mid}
go to reference in section~\ref{here} on page~\pageref{here}
\end{document}
The result looks like:

Basically a \ref is always referencing towards the counter of the chapter/section/subsection/... while a \pageref is referencing to the page the label is on. hyperref also has an \autoref which has some standard names for chapter/section/subsection, so you can leave that part out of writing.
\labelrecords the last referencable thing, most numbered constructs may be referenced but there there is nothing, put\section{zzzz}before it then the\refwill produce 1 the section number – David Carlisle Mar 31 '18 at 15:48go to reference ... on page 1? What should .... be? The page number? Or a link to the first page? – samcarter_is_at_topanswers.xyz Mar 31 '18 at 16:17\hyperlink{here}{go to reference on page 1}– samcarter_is_at_topanswers.xyz Mar 31 '18 at 16:21