[Tex/LaTex] How to display two different dates on the title page

datetime

My aim is to display both the experiment and the report date on the title page of my report; how can I achieve my goal?

Edit: Part of my code before the main part is as follows:

\documentclass[12pt]{article}
\usepackage{a4, color}
\usepackage{amsmath, amsfonts, amssymb}
\usepackage{siunitx}
\begin{document} 
\title{Understanding Semiconductor Lasers}
\author{Ongun Ar\i sev}
\date{\today}
\maketitle
\newpage

Thanks

Best Answer

Under the default document classes (including article), you can just add another date to \date:

enter image description here

\documentclass[12pt]{article}
\title{Understanding Semiconductor Lasers}
\author{Ongun Ar\i sev}
\date{\today{} and January 1, 2013}
\begin{document} 
\maketitle
\end{document}