 |
Blocks unwanted calls
Allows block/unblock on the go ..
Maintains a log of rejected calls .. and allows to send
an sms or make a call to the rejected caller immidiately !
The best of all .... its all at no cost ...
|
|
|
Here you can join ongoing discussions and contribute or get any sort of help. On the other hand, you may start
your own topic for discussion by other users.
//start of topics
$result = mysql_query("SELECT * from topic where authenticated='y' and approved='y' order by lastupdate desc",$db);
while ($topic= mysql_fetch_array($result))
{
//echo $topic[2];
//return;
$topicID=$topic["TopicID"];
$topicCreated=date("d-m-y (h:i a)",strtotime($topic['TopicCreated']));
$topicCreatorName=$topic["TopicCreatorName"];
$topicCreatorEmail=$topic["TopicCreatorEmail"];
$topicSubject=$topic["TopicSubject"];
$topicText=$topic["TopicText"];
$lastUpdate=$topic["LastUpdate"];
$authenticated=$topic["Authenticated"];
$approved=$topic["Approved"];
//get the number of comments for this topic
$result2 = mysql_query("SELECT count(*) as counts from comment where topicid=".$topicID." and (approved='y' or (authenticated='y' and DATE_ADD( commentcreated, INTERVAL ".$HoursTillCommentIsValid." HOUR ) > NOW() ) )",$db);
//echo ("SELECT count(commentid) as counts from comment where topicid=".$topicID);
$totalComments=mysql_result($result2,0,"counts");
if($totalComments=="")
$totalComments=0;
//now print this topic...
?>
}
//end of topics
?>
©2007 Anfy Team. All rights reserved.
©www.anfymobile.com/callfilter.