Witam

Mam mały problem ze skryptem :/
Wyskakuje mi taki napis
Parse error: syntax error, unexpected T_LNUMBER in ...public_html/formularz.php on line 8
a oto kod:
<?php
switch($_GET['akcja'])
{
default:
echo(" <br /><br /><b>Nazwa</b><hr width=\"100%\"> <table width="100%">
<tr>
<td width="1%"><b> DANE OSOBOWE:</b></td>
<td width="60%"></td>
</tr>
<tr>
<td width="1%">
<p style="word-spacing: 0; line-height: 100%; margin: 0">Imię:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"imie\"1></p>
</td>
<td width="60%">
<p style="word-spacing: 0; line-height: 100%; margin: 0">Nazwisko:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"nazwisko\"1> </p>
</td>
</tr>
<tr>
<td width="1%">
<p style="word-spacing: 0; line-height: 100%; margin: 0">Nick:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"nick\"1></p>
</td>
<td width="60%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Data
urodzenia:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"data\"1></p>
</td>
</tr>
<tr>
<td width="1%"><b>ADRES:</b></td>
<td width="60%"></td>
</tr>
<tr>
<td width="1%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Ulica:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"ulica\"1></p>
</td>
<td width="60%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Numer
domu:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"nr\"1></p>
</td>
</tr>
<tr>
<td width="1%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Miejscowość:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"miejscowosc\"1></p>
</td>
<td width="60%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Kod
Pocztowy:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"kod\"1></p>
</td>
</tr>
<tr>
<td width="1%"><b>ALICJA:</b></td>
<td width="60%"></td>
</tr>
<tr>
<td width="1%">Ulubiona piosenka Ali:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"ulubiona\"1></p>
</td>
<td width="60%">Jestem jej fanem/fanką od::
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"od\"1></p>
</td>
</tr>
<tr>
<td width="1%"><p style="word-spacing: 0; line-height: 100%; margin: 0"><b>HASŁO:</b></td>
<td width="60%"></td>
</tr>
<tr>
<td width="1%">
<p style="word-spacing: 0; line-height: 100%; margin: 0">Twój e-mail:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"email\"1></p>
</td>
<td width="60%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Powtórz
e-mail:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"remail\"1></p>
</td>
</tr>
<tr>
<td width="1%">
<p style="word-spacing: 0; line-height: 100%; margin: 0">Hasło:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"haslo\"1></p>
</td>
<td width="60%"><p style="word-spacing: 0; line-height: 100%; margin: 0">Powtórz
hasło:
<p style="word-spacing: 0; line-height: 100%; margin: 0"> <input type=\"text\" name=\"rhaslo\"1></p>
</td>
</tr>
<tr>
<td width="1%">
<input type=\"submit\" value=\"wyslij\">
</td>
<td width="60%"></td>
</tr>
</table>
");
break;
case "wyslij":
$imie = $_POST['imie'];
$nazwisko = $_POST['nazwisko'];
$nick = $_POST['nick'];
$data = $_POST['data'];
$ulica = $_POST['ulica'];
$nr = $_POST['nr'];
$miejscowosc = $_POST['miejscowosc'];
$kod = $_POST['kod'];
$ulubiona = $_POST['ulubiona'];
$od = $_POST['od'];
$email = $_POST['email'];
$remail = $_POST['remail'];
$haslo = $_POST['haslo'];
$rhaslo = $_POST['rhaslo'];
if (strlen($imie)==0||strlen
($nazwisko)==0||strlen
($nick)==0||strlen
($data)==0||strlen
($ulica)==0
||strlen
($nr)==0
||strlen
($miejscowosc)==0
||strlen
($kod)==0
||strlen
($ulubiona)==0
||strlen
($od)==0
||strlen
($email)==0
||strlen
($remail)==0
||strlen
($haslo)==0
||strlen
($rhaslo)==0
) {
echo 'Niewypełniono wszystkich pól: <br> <br>'; require 'zamuw.php';
}
$plik = $nick.".txt"; //deklaracja ścieżki do pliku
$test = file_exists($plik); //sprawdzenie czy plik istnieje if ($test) //jeżeli plik nie istnieje (zmienna $test=FALSE)
{
echo "Uzytkownik o nazwie " .$plik. " juz istnieje"; }
$plik = $nick.".txt";
fwrite($fp, $imie."##".$nazwisko."##"$nick."##".$data."##".$ulica."##".$nr."##".$miejscowosc."##".$kod."##".$ulubiona."##".$od."##".$email."##".$remail."##".$haslo."##".$rhaslo."##".);
[".$_POST['nick']."] zgłoszenie zostało wysłane!<br /><r />
");
break;
}
?>
Może mi ktoś pomóc?