kod sie nie wykonuje
<?
include "./includes/messages.inc.php";
include "./includes/config.inc.php";
include "./includes/countries.inc.php";
include "./includes/checkage.inc.php";
//--
getSessionVars();
$auction_id = $sessionVars["CURRENT_ITEM"];
if (empty($action))
{
$action="first";
}
if ($REQUEST_METHOD=="POST" && $action=="first")
{
if ($TPL_name && $TPL_nick && $TPL_password && $TPL_repeat_password && $TPL_email &&
$TPL_address && $TPL_city && $TPL_prov && $TPL_country && $TPL_zip && $TPL_phone )
{
//-- Explode birthdate into DAY MONTH YEAR
$DATE = explode("/",$TPL_birthdate);
$birth_day = $DATE[1];
$birth_month = $DATE[0];
$birth_year = $DATE[2];
$DATE = "$birth_year$birth_month$birth_day";
if (strlen($TPL_nick)<6)
{
$TPL_err=1;
$TPL_errmsg=$ERR_107;
}
else if (strlen ($TPL_password)<6)
%