Your IP : 216.73.216.48


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

<?php
	date_default_timezone_set("Europe/Sofia");
	$d="";
	$s="";
	if (isset($_POST["d"]))
	{
		$d=$_POST["d"];
		$s=$_POST["s"];
	}
	else
	{
		$d="";
	}
	if (($d=="") || ($s==""))
	{
		print("ERR");
		exit;
	}
	else
	{
		include("./conn.php");
		$iq=mysqli_query($db, "INSERT INTO `songs` (`i`, `s`, `d`) VALUES (NULL, '".$s."', '".$d."');");
		if ($iq)
		{
			print("OK");
			exit;
		}
		else
		{
			print("ERR");
			exit;
		}
	}
?>