Hey...
I have experienced a problem with my main-site (index.php).
On the site I have 2 forms that both work as "drop-down menu-link", meaning that If I choose an option and hit "GO" I get redirected to another page.
Well, the problem is that this only works when i type the whole url
like for example
www.sitename.com/index.php
but not when I type
www.sitename.com
I put this code at the top of my page (index.php)
<?
if ($POST['teams2']){
$teams22 = $POST['teams22'];
header("location:team.php?team=$teams22");
}
?>
What can be the problem? This is really bugging me
thanks guys/girls