There are some nice and succinct answers already. If you'd like even more intuition with as little math and higher level linear algebra concepts as possible, consider two arbitrary vectors $v$ and $w$.
Simplest Answer
Take the dot product of one vector with the projection of the other vector.
$$
(P v) \cdot w
$$
$$
v \cdot (P w)
$$
In both dot products above, one of the terms ($P v$ or $P w$) lies entirely in the subspace you project onto. Therefore, both dot products ignore every vector component that is not in this subspace - they consider only components in the subspace. This means both dot products are equal to each other, and are in fact equal to:
$$
(P v) \cdot (P w)
$$
Since $(P v) \cdot w = v \cdot (P w)$, it doesn't matter whether we apply the projection matrix to the first or second argument of the dot product operation. Some simple identities then imply $P = P^T$, so $P$ is symmetric (See step 2 below if you aren't familiar with this property).
Less intuitive Answer
If the above explanation isn't intuitive, we can use a little more math.
Step 1.
First, prove that the two dot products above are equal.
Decompose $v$ and $w$:
$$
v = v_p + v_n
$$
$$
w = w_p + w_n
$$
In this notation the $p$ subscript indicates the component of the vector in the subspace of $P$, and the $n$ subscript indicates the component of the vector outside (normal to) the subspace of $P$.
The projection of a vector lies in a subspace. The dot product of anything in this subspace with anything orthogonal to this subspace is zero. We use this fact on the dot product of one vector with the projection of the other vector:
$$
(P v) \cdot w \hspace{1cm} v \cdot (P w)
$$
$$
v_p \cdot w \hspace{1cm} v \cdot w_p
$$
$$
v_p \cdot (w_p + w_n) \hspace{1cm} (v_p + v_n) \cdot w_p
$$
$$
v_p \cdot w_p + v_p \cdot w_n \hspace{1cm} v_p \cdot w_p + v_n \cdot w_p
$$
$$
v_p \cdot w_p \hspace{1cm} v_p \cdot w_p
$$
Therefore
$$
(Pv) \cdot w = v \cdot (Pw)
$$
Step 2.
Next, we can show that a consequence of this equality is that the projection matrix P must be symmetric. Here we begin by expressing the dot product in terms of transposes and matrix multiplication (using the identity $x \cdot y = x^T y$ ):
$$
(P v) \cdot w = v \cdot (P w)
$$
$$
(P v)^T w = v^T (P w)
$$
$$
v^T P^T w = v^T P w
$$
Since v and w can be any vectors, the above equality implies:
$$
P^T = P
$$