Chciałbym wysłać dane z formularza
<script type="text/javascript">
function sprawdz(formularz)
{
for (i = 0; i < formularz.length; i++)
{
var pole = formularz.elements[i];
if (!pole.disabled && !pole.readonly && (pole.type == "text" || pole.type == "password" || pole.type == "textarea") && pole.value == "")
{
alert("Prosz wypelnic wszystkie pola!");
return false;
}
}
return true;
}
</script>
<form action="wyslij.php" method="post" onsubmit="if (sprawdz(this)) return true; return false">
<div>
Imie: <input type="text" name="imie" /><br />
Login: <input type="text" name="login" /><br />
E
-Mail: <input type
="text" name
="mail" /><br
/>Gadu Gadu: <input type="text" name="gg" /><br />
<input type="image" src="grafika/wyslij.png" value="" />
tylko nie wiem co wprowadzić w pliku wyślij.php Proszę o pomoc