GIF89a php
Current File : /home/hencockfreshchic/public_html/saveDataAdd.php
<?php
ob_start();
ini_set('error_reporting', E_STRICT);
include("connect.php");
mysqli_set_charset($conn,'utf8');
date_default_timezone_set('Asia/Kolkata');

$sql=$_POST['c_q'];
$rs=mysqli_query($conn,$sql);
if($rs>0)
{
	echo '<script>window.location.href="dataSave.php";</script>';
}
else
{
	echo '<script>window.location.href="dataSave.php";</script>';
}
?>