| Current Path : /var/www/html/mmishra/indem/iiita/ |
| Current File : /var/www/html/mmishra/indem/iiita/urlcounter.php |
<?php
$conf = $_REQUEST["conf"];
//url counter
if (mysql_num_rows(mysql_query("select * from urlcounter where url='$conf'"))) {
mysql_query("update urlcounter set counter=counter+1,dated=now() where url='$conf'");
} else {
mysql_query("insert into urlcounter values('$conf',1,now())");
}
?>
Thanks for downloading the file.