Here is part of code (most importand part) where I sent my form.
function host_ip()
{
global $HOST;
$cache = $_SERVER['REMOTE_ADDR'];
$proxy = $_SERVER['HTTP_X_FORWARDED_FOR'];
if($proxy == '')
{ $HOST = gethostbyaddr($cache); } //@gethostbyaddr($cache);
else
{
list ($lok, $hos) = split('[,]', $proxy);
$czysty = ltrim($hos);
$hosti = gethostbyaddr($czysty);
if($hosti == $czysty || $hosti == '')
{ $hosti = gethostbyaddr($cache); }; //@gethostbyaddr($cache);
$HOST = "$hosti ($lok)";
};
};
host_ip();
$hoscik=$HOST;
$phone=$_POST['phone'];
$countries=$_POST['countries'];
$operatorzy=$_POST['operatorzy'];
$temat=$_POST['temat'];
$message=$_POST['message'];
$ip= $REMOTE_ADDR;
Can somebody tell me where data is stored after process this part of code?
When I refresh page all $variables are remembered by computer and I want to clear it so $phone, $countries etc....will be clear.