
Cytat
Parse error: syntax error, unexpected T_VARIABLE in /home/lechtvfr/domains/lechtv.freecast.pl/public_html/forum/add_topic.php on line 45
Kod pliku
Co robię źle?
[...]nclude('../config.php'); $tbl_name="forum_question"; // Nazwa Tabeli if($_SESSION['poziom'] = Administrator){ $autor="<font color='red'>"$_SESSION['login']"</font>"; else{ $autor=$_SESSION['login']; } $temat=$_POST['temat']; $tresc=$_POST['tresc']; $email=$_SESSION['email']; $avatar=$_SESSION['avatar']; $gg=$_SESSION['gg']; $poziom=$_SESSION['poziom']; $sql="INSERT INTO $tbl_name(temat, tresc, autor, email, avatar, gg, poziom, datetime)VALUES('$temat', '$tresc', '$autor', '$email', '$avatar', '$gg', '$poziom', '$datetime')"; [...]