<?php
include ("admin/module/php/config.inc.php");
$Content=$_POST['Content'];
$select=mysql_query("SELECT * FROM active_content WHERE Content='".$Content."'") or die (mysql_error());
$num_rows=mysql_num_rows($select);
$arr=array();
if($num_rows == 1){
$arr['Callback']="Same";
}else{
$arr['Callback']="";
}
echo json_encode($arr);
?>