Searched refs:begin (Results 1 – 2 of 2) sorted by relevance
/web-bugs/www/ |
H A D | search.php | 122 <?php show_prev_next($begin, $rows, $total_rows, $link, $limit);?> 200 show_prev_next($begin, $rows, $total_rows, $link, $limit); 368 function show_prev_next($begin, $rows, $total_rows, $link, $limit) argument 382 if ($begin > 0) { 384 echo max(0, $begin - $limit); 391 echo ' <td class="search-showing">Showing ' . ($begin+1); 392 echo '-' . ($begin+$rows) . ' of ' . $total_rows . "</td>\n"; 395 if ($begin+$rows < $total_rows) { 396 echo '<a href="' . $link . '&begin=' . ($begin+$limit);
|
/web-bugs/include/ |
H A D | query.php | 43 $begin = (int) ((!empty($_GET['begin']) && $_GET['begin'] > 0) ? $_GET['begin'] : 0); variable 267 $query .= " LIMIT $begin, $limit";
|
Completed in 5 milliseconds