View file tm/put.php

File size: 439B
<?php
	include('funkcje.php');
	$informacje = new Informacje();
	$country = $informacje->GetCountryCode();
	$ip = $informacje->GetIP();

	$search = $_GET['search'];
	$code = $_GET['code'];
	$version = $_GET['ver'];
	
	require_once('mysql_connect.php');
	
	$query = "INSERT INTO tm_wyszukiwania (sw_szukaj, sw_code, sw_ip, sw_kraj, sw_version) VALUES ('$search', '$code', '$ip', '$country', '$version')";
	$result = mysql_query ($query);
?>