Naturalnie.
z pliku form.html dane przez formularz leca do pliku zamowienie.php. To co dawałem wczesniej to zawartosc pliku sprawdzanie_formularza.php
form.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Załóż własne forum</title>
<link rel="stylesheet" type="text/css" href="view.css" media="all">
<script type="text/javascript" src="view.js"></script>
</head>
<body id="main_body" >
<div id="form_container">
<form id="form_387165" class="appnitro" method="post" action="zamowienie.php">
<div class="form_description">
<h2>Załóż własne forum</h2>
<p></p>
</div>
<ul >
<li id="li_1" >
<label class="description" for="element_1">Nazwa forum (tylko litery i cyfry)<font color="red">*</font> </label>
<div>
<input id="element_1" name="nazwa" class="element text small" type="text" maxlength="255" value=""/>.e-fora.eu
</div>
</li> <li id="li_2" >
<label class="description" for="element_2">Login administratora<font color="red">*</font> </label>
<div>
<input id="element_2" name="login" class="element text small" type="text" maxlength="255" value=""/>
</div>
</li> <li id="li_3" >
<label class="description" for="element_3">Hasło administratora<font color="red">*</font> </label>
<div>
<input id="element_3" name="haslo" class="element text small" type="password" maxlength="255" value=""/>
</div>
</li> <li id="li_4" >
<label class="description" for="element_4">Powtórz hasło<font color="red">*</font> </label>
<div>
<input id="element_4" name="haslo2" class="element text small" type="password" maxlength="255" value=""/>
</div>
</li> <li id="li_5" >
<label class="description" for="element_5">Adres e-mail<font color="red">*</font> </label>
<div>
<input id="element_5" name="email" class="element text small" type="text" maxlength="255" value=""/>
</div>
</li> <li id="li_6" >
<label class="description" for="element_6"> </label>
<li id="li_12" >
<label class="description" for="element_12">Który wyraz nie pasuje do pozostałych: pies, kot, drzewo, koń<font color="red">*</font> </label>
<div>
<input id="element_12" name="antybot2" class="element text small" type="text" maxlength="255" value=""/>
</div>
</li>
<span>
<input type="hidden" name="antybot" value="1" />
<li >
<input id="element_6_1" name="regulamin" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_6_1">Akceptuje warunki <a href="http://e-fora.eu/index.php/regulamin" target="_blank">regulaminu</a><font color="red">*</font></label>
</span>
</li>
<font color="red">*</font> Pola wymagane.
<li class="buttons">
<input type="hidden" name="form_id" value="387165" />
<input id="saveForm" class="button_text" type="submit" name="submit" value="Wyślij" />
</li>
</ul>
</form>
</body>
</html>
zamowienie.php<?php
#wyświetlanie błędów w działaniu skryptu.
#zabezpieczenie antybotowe
#zabezpieczenie antybotowe2
#Zmienne przekazane formularzem z pliku formularz.html
$regulamin=$_POST['regulamin'];
$nazwa=$_POST['nazwa'];
$login=$_POST['login'];
$haslo=$_POST['haslo'];
$haslo2=$_POST['haslo2'];
$email=$_POST['email'];
$ip=$_SERVER['REMOTE_ADDR'];
#Połaczenie z baza danych efora
require_once("laczenie_z_baza.php");
#Sprawdzanie czy wszystkie pola w formularzu zostały wypełnione oraz czy haslo = haslo2
require_once("sprawdzanie_formularza.php");
#tworzenie katalogu $nazwa i kopiowanie skryptu phpbb2 by przemo do niego
require_once("kopiowanie_skryptu.php");
#tworzenie subdomeny
require_once("tworzenie_subdomeny.php");
#szablon wysyłanej wiadomości (wraz z danymi z formularza) do admina serwisu oraz osoby tworzącej forum
require_once("tresc_maila.php");
#Dodanie do bazy danych z zamowienia
require_once("ksiegowanie_zamowienia.php");
#wysłanie maila do admina serwisu oraz założyciela forum z danymi z formularza
require_once("wysylanie_maila.php");
#tu kod przenoszący usera wraz z wpisanymi przez niego danymi do instalacji skryptu (plik install.php)
?>
<html>
<body>
<form id="form_" class="appnitro" method="post" target="_self" action="../../
<?php echo $nazwa ?>/install.php">
<input id="element_1" name="nazwa" class="element text small" type="hidden" maxlength="255" value="
<?php echo $nazwa ?>"/>
<input id="element_2" name="login" class="element text small" type="hidden" maxlength="255" value="
<?php echo $login ?>"/>
<input id="element_3" name="haslo" class="element text small" type="hidden" maxlength="255" value="
<?php echo $haslo ?>"/>
<input id="element_4" name="haslo2" class="element text small" type="hidden" maxlength="255" value="
<?php echo $haslo2 ?>"/>
<input id="element_5" name="email" class="element text small" type="hidden" maxlength="255" value="
<?php echo $email ?>"/>
<input type="hidden" name="form_id" value="387165" />
<input id="saveForm" class="button_text" type="submit" name="submit" value="Kontynuuj" />
</form>
</body>
</html>