42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
11
|
<?php
if(isset($_GET['id'])){
$objAkcii->viewOneNews($_GET['id'],$row);
$setup->meta = array("title"=>$row['meta_title'],"keywords"=>$row['meta_keywords'],"description"=>$row['meta_description']);
$objAkcii->displayNewsOne();
}
else{
$objAkcii->viewAllNews();
$objAkcii->displayNews();
}
?>
|