I have writen a form for being a member and write this php...
<html>
<head>
<meta http-equiv="Content-Language" content="tr">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1254">
<title>form</title>
<body>
<?php
$ni = $REQUEST['ni'];
$pa = $REQUEST['pa'];
$pa1 = $REQUEST['pa1'];
$em = $REQUEST['em'];
$ui = $REQUEST['ui'];
$be = $REQUEST['be'];
$is = $REQUEST['is'];
$so = $REQUEST['so'];
$do = $REQUEST['ye'];
$ye = $REQUEST['ye'];
if (( $pa == $pa1 ) and ( $em != "") and ( $ni != "" ) and ( $pa != "" ) and ( $is != "" ) and ( $so != "" ) and ( $ye != "" ) and ( $be != "" ) and ( $do != "" ) ){
@mysql_connect ("localhost", "root") or die ("mysqla baðlanamadýn")
@mysql_select_db ("uye") or die ("dbye baðlanamadýn")
$sql = "insert into uye (nick, sifre, ad, soyad, dogum, yer, email, uin, kisi) values ('$ni', '$pa', '$is', '$so', '$do', '$ye', '$em', '$ui', '$be')";
$kayit = mysql_query($sql);
if (isset ($kayit)) {
echo "üyelik kaydý yapýlmýþtýr"."<br>"."merhaba: "."<b>". $ni ."</b>". "<br>";
}
else {
echo "yanlýþ bir þeyler var"."<br>"."<a justify=center href=uye.htm>tekrar denicem</a>"
}
}
else{
echo "yanlýþ bir þeyler var"."<br>"."<a justify=center href=uye.htm>tekrar denicem</a>";
}
?>
<p><a href="http://www.students.itu.edu.tr/~ersum/">ana sayfa</a>
</body>
</html>
but it writes
Parse error: parse error, unexpected '@' in uye.php on line 21
well Ý cannot understand what must I do you see I'm a beginner
thank you