We have to prove that $$p\mid\binom{p}{k}$$ for $1\le k\le p-1$.
My approach was to expand $\binom{p}{k}$ and simplify as
$$\binom{p}{k}=\frac{1\cdot 2\cdot\ldots\cdot p}{1\cdot 2\cdot\ldots\cdot k\cdot 1\cdot 2\cdot\ldots\cdot (p-k-1)\cdot (p-k) }=$$
$$=\frac{(p-k+1)\cdot\ldots\cdot (p-1)\cdot p}{k!}=p\cdot\frac{(p-k+1)\cdot\ldots\cdot (p-1)}{k!}.$$
Now (because of combinatorial reasons) $\binom{p}{k}$ is an integer so the last expression above has to be an integer as well. This means that $\frac{(p-k+1)\cdot\ldots\cdot (p-1)}{k!}$ is eighter an integer self (we have then $\binom{p}{k}=p\cdot n, n\in\mathbb{Z}$) and then we are done or it becomes an integer after multiplication by $p$. Now we simplify in this expression so that the nominator and denominator is relative primes so we get
$$\frac{(p-k+1)\cdot\ldots\cdot (p-1)}{k!}=\frac{a}{b}$$
with $\gcd(a,b)=1$. Now $p$ wasn't a factor in $k!$ since $k\le p-1$ and $p$ is prime and after the simplification we only can have less factors in the denominator so $p$ cannot be one of the factors. This means that $p=b\cdot m, m\in\mathbb{Z}$ but since $p$ was prime this implies eighter $b=1$ or $b=p$. Now if $b=1$ then the expression is an integer and we are done. And $b=p$ means that the product of all the factors left after the simplification gives $p$ and since it was prime this means that one of the factors was $p$ itself which is a contradiction because we already saw that all the factors in the denominator has to be smaller than $p$. Q.E.D
This feels like a standard problem that one should tackle with induction but I still would like to know whether this is correct. Any help? Thanks.