[PHP & MySQL] Php l Login Problem

Golden Hope
Hallo

Ich benutze den Code von Unicorn. Bei Logform steht bei mir folgendes:

<?
$pw=$HTTP_POST_VARS['pw'];
$uname=$HTTP_POST_VARS['uname'];


if($uname=="Test" and $pw =="test"){
$yes ="1";
$job = "Tierarzt";
}
if($yes=="1")
{
session_start ();
$_SESSION["user_name"] =$uname;
$_SESSION["user_job"] =$job;
header("location: intern.htm");
}
?>

Aber wenn ich mich einlogge kommt
Parse error: syntax error, unexpected T_VARIABLE in /usr/export/www/vhosts/funnetwork/hosting/gcb/GA/logform.php on line 2

Ich finde den Fehler einfach nicht.
Vielleicht kann mir Jemand weiter helfen... .

Lg
ShivaChewy
Probiers mal mit dem Code:

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<? 
@session_start (); 
$pw=$HTTP_POST_VARS['pw'];
$uname=$HTTP_POST_VARS['uname'];


if($uname=="Test" and $pw =="test"){
$yes ="1";
$job = "Tierarzt";
}

if($yes=="1")
{
$_SESSION["user_name"] =$uname;
$_SESSION["user_job"] =$job;
include("intern.php");
}
?>