Постраничная навигация?

Печать RSS
402

R
Автор
Пришелец
0
8. CUl5-AJIb9lHC, моя страница называется red.php
значит мне нужно за место page_strnavigation("index.php?", 10,$start, $total); писать вот так page_strnavigation("red.php?", 10,$start, $total);?

Чатланин
0
выложи код, адаптирую под нее smile
R
Автор
Пришелец
0
<?php
require_once ('includes/start.php');
require_once ('includes/functions.php');
require_once ('includes/header.php');
include_once ('themes/'.$config['themes'].'/index.php');
echo '<div class="divb">Мини чат</div><br><br>
<div class="art-Block-tl"></div>
<div class="art-Block-tr"></div>
<div class="art-Block-bl"></div>
<div class="art-Block-br"></div>
<div class="art-Block-tc"></div>
<div class="art-Block-bc"></div>
<div class="art-Block-cl"></div>
<div class="art-Block-cr"></div>
<div class="art-Block-cc"></div>
<div class="art-Block-body">
<div class="art-BlockContent">
<div class="art-BlockContent-body"><div>';
include 'data.txt';
page_strnavigation("red.php?", 10,$start, $total);
?>
</div>
</div></div></div>
<form action="script1.php" method="post">
<!-- поле text -->
<!-- визуальный размер установлен в 40 символов -->
<input type="text" name="text" size="20" value="Ваш ник:"><br
/>
<!-- поле textarea -->
<!-- длина - 30 символов, ширина - 5 символов -->
<textarea name="textarea" cols="30"
rows="5"></textarea><br />
<!-- кнопка посыла запроса -->
<input type="submit">
</form>


<?php
include_once ('themes/'.$config['themes'].'/foot.php');
?>
R
Автор
Пришелец
0
12. CUl5-AJIb9lHC, выложил

Чатланин
0
<?php
require_once ("includes/start.php");
require_once ("includes/functions.php");
require_once ("includes/header.php");
if (isset($_GET['start'])) {
$start = abs(intval($_GET['start']));
} else {
$start = 0;
}
$array = array("art-Block-bc", "art-Block-lc", и т.д.);
$total = count($array);
if ($start < 0 || $start >= $total) {
$start = 0;
}
if ($total < $start + 10) {
$end = $total;
} else {
$end = $start + 10;
}
for ($i = $start; $i < $end;  $i++) {
echo '<div class="'.$array[$i].'"></div>';
}
page_strnavigation("red.php?", 10, $start, $total);
?>
вставь себе нужное

[̲̅$̲̅(̲̅ιοο̲̅)̲̅$̲̅
0
R
Автор
Пришелец
0
15. CUl5-AJIb9lHC, спасибо огромное,сроду бы недогадался,потому что я тупарь

[̲̅$̲̅(̲̅ιοο̲̅)̲̅$̲̅
0
klass это плохо
Изменил: ZipeR (29.12.2010 / 14:29)

Чатланин
0
ZipeR (29 Декабря 2010 / 14:28)
klass это плохо
отрицательный голос D
R
Автор
Пришелец
0
Какая тут может быть ошибка if (isset( $_GET [ 'start' ])) ???

<?php require_once ( "../includes/start.php" ); require_once ( "../includes/functions.php" ); require_once ( "../includes/header.php" ); include_once ( '../themes/' . $config [ 'themes' ] . '/index.php' );
if (isset( $_GET [ 'start' ])) { $start = abs ( intval ( $_GET [ 'start' ])); } else { $start = 0 ; } $array = array ( "art-Block-bc" , "art-Block-lc" ); $total = count ( $array ); if ( $start < 0 || $start >= $total ) { $start = 0 ; } if ( $total < $start + 10 ) { $end = $total ; } else { $end = $start + 10 ; } for ( $i = $start ; $i < $end ; $i ++) { echo '<div class="' . $array [ $i ]. '"></div>' ; } page_strnavigation ( "red.php?" , 10 , $start , $total ); include_once ( '../themes/' . $config [ 'themes' ] . '/foot.php' ); ?>
Стикеры / Теги / Правила / Топ тем / Топ постов / Поиск