I have a new question.
I'm building this website, and I use a menu for navigating. The problem is that it doesn't work properly in Mozilla browsers. It does work in IE though. The code looks like this:
.
.
<form name="f2" method="post" action="index.php">
<input type="hidden" name="content" value="2">
</form>
.
.
<a class="menu" href="javascript:f2.submit()">News</a>
.
.
When a Mozilla user clicks on "News", nothing happens.
Is there a way to fix this?
Btw, I know something like index.php?content=2 works, but I hope there's a prettier way.