dir/mod/lsearch.php
Roland Häder c353b31569
Cleanups:
- don't commit files that are being ignored, better provide a "template" file
  that needs copying to the right file and ignore the file that will have local
  changes like config files will always have.
- fixed CHMOD, no need for executable flag here as the server won't execute
  these files, but only load (read) them
- fixed E_NOTICE in boot.php when entrance/index page (no parameter) is being
  called

Signed-off-by: Roland Haeder <roland@mxchange.org>
2017-03-01 20:00:32 +01:00

42 lines
1.2 KiB
PHP

<?php
function lsearch_init(&$a) {
$perpage = (($_REQUEST['n']) ? $_REQUEST['n'] : 80);
$page = (($_REQUEST['p']) ? intval($_REQUEST['p'] - 1) : 0);
$startrec = (($page+1) * $perpage) - $perpage;
$search = trim($_REQUEST['search']);
if(! strlen($search))
killme();
if($search)
$search = dbesc(escape_tags($search));
$sql_extra = ((strlen($search)) ? " AND ( `name` REGEXP '$search' OR `homepage` REGEXP '$search' OR `tags` REGEXP '$search'
or `region` REGEXP '$search' or `country-name` regexp '$search' ) " : "");
$r = q("SELECT COUNT(*) AS `total` FROM `profile` WHERE 1 $sql_extra ");
if(count($r))
$total = $r[0]['total'];
$r = q("SELECT * FROM `profile` WHERE 1 $sql_extra ORDER BY `name` ASC LIMIT %d, %d ",
intval($startrec),
intval($perpage)
);
$results = array();
if(count($r)) {
foreach($r as $rr)
$results[] = array('name' => $rr['name'], 'url' => $rr['homepage'], 'photo' => $a->get_baseurl() . '/photo/' . $rr['id'], 'tags' => $rr['tags']);
}
$output = array('total' => $total, 'items_page' => $perpage, 'page' => $page + 1, 'results' => $results);
echo json_encode($output);
killme();
}