I don't know why you'd need an "IF" statement... first HTML is not a scripting language, there are no "IF" statements- that would be JavaScript or PHP.
If you want to bring someone to lesson.php when they click on the lesson image you'd put an <a href="..."> tag around the <img> tag of the lesson... something like:
<a href="lesson.php"><img src="lesson.gif" border="0" /></a>
This is very most basic of basic HTML- if you don't know this you really need to get a book or something and learn the basics before you start asking questions.
|