Просмотр файла publs_v1_0/set.php

Размер файла: 1.8Kb
<?php
$headmod = 'pub';
$textl = 'Библиотека';

require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/header.php');

require_once ("./inc/conf.php");
require_once ("panel.dat");

echo '<ol class="breadcrumb">';
echo '<li><a href="/index.php?"> <i class="fa fa-home fa-lg text-muted"></i> </a></li>';
echo '<li class=""><a href="index.php?">Публикации</a></li>';
echo '<li class="active"><strong>Настройки показа</strong></li>';
echo '</ol> ';

if (empty($_POST['submit'])) {
	echo '<div class="form">';
	echo '<form method="POST" action="set.php?">';
	echo 'Количество символов на страницу при чтении стаьи: <br />
		  <input name="simvol" value="'.$simvol.'"/> <br />';
	echo 'Количество публикаций на страницу: <br />
		  <input name="kol_file" value="'.$kol_file.'"/> <br /><br />';
	echo '<input value="Изменить" type="submit" name="submit"/></form>';
	echo '</div>';
	
	/*echo '<div class="alert alert-warning">
			<h5><i class="fa fa-warning" aria-hidden="true"></i> Внимание!</h5> <small>
			Данные настройки пишуться в сессию! <br />Ссылка «<- Вернуться» может работать не коретно!</small>
		</div>';*/
}	else {
	if	(!empty($_POST['simvol']) && !empty($_POST['kol_file'])) {
		$sim = intval($_POST['simvol']);
		$kol = intval($_POST['kol_file']);
		$_SESSION['symb'] = $sim;
		$_SESSION['file'] = $kol;
		notice('Настройки успешно применены!');
		redirect('?');
	}
}
//echo '<a href="'.$_SESSION['ref'].'"><- Вернуться</a></p>';
include_once ('../themes/footer.php');
?>