File size: 922B
<?php
##############################
## WAP-ENGINE ##
##############################
## ##
## Автор : CHUMA ##
## e-mail : [email protected] ##
## WAP : http://wapeng.info ##
## ICQ : 13-14-11 ##
## ##
##############################
## ВЫ НЕ ИМЕЕТЕ ПРАВО ##
## ИЗМЕНЯТЬ КОД СКРИПТА ##
## ДЛЯ ДАЛЬНЕЙШЕГО ##
## РАСПРОСТРАНЕНИЯ ##
##############################
$file = file("data/news.txt");
list($date,$news)=split(" ",$file[0],2);
echo "$date<br />$news<br />";
if(file_exists("data/newskoments/$date.txt"))
{
$preview="data/newskoments/$date.txt";
$preview = file($preview);
$count = count($preview);
$countkom = "[$count]";
}else{
$countkom = "[0]";
}
echo "<a href=\"modules/news/kom.php?id=$date\">Коментарии $countkom</a><br /><br />";
?>