123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- require_once('database.php');
- require_once('templating.php');
- require_once('data/sanitize.php');
- require_once('data/Server.php');
- require_once('data/User.php');
- if (strtolower(substr($connect_string, 0, 5)) == 'mysql') {
- $random = 'RAND';
- } else if (strtolower(substr($connect_string, 0, 5)) == 'mssql') {
- $random = 'NEWID';
- } else {
- $random = 'RANDOM';
- }
- if ($_REQUEST['country']) {
- $q = sprintf('SELECT u.* FROM Users u INNER JOIN Places p ON u.location_uri=p.location_uri AND p.country=%s ORDER BY %s() LIMIT 100',
- $adodb->qstr(strtoupper($_REQUEST['country'])),
- $random);
- $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
- $res = $adodb->GetAll($q);
- foreach ($res as &$row) {
- try {
- $userlist[] = new User($row['username'], $row);
- } catch (Exception $e) {}
- }
- $smarty->assign('country', strtoupper($_REQUEST['country']));
- $row = $adodb->GetRow(sprintf('SELECT * FROM Countries WHERE country=%s LIMIT 1',
- $adodb->qstr(strtoupper($_REQUEST['country']))));
- if ($row) {
- $smarty->assign('country_info', $row);
- }
- $smarty->assign('userlist', $userlist);
- $smarty->assign('extra_head_links', array(
- array(
- 'rel' => 'meta',
- 'type' => 'application/rdf+xml',
- 'title' => 'FOAF',
- 'href' => $base_url . '/rdf.php?fmt=xml&page=' . rawurlencode(str_replace($base_url, '', $_SERVER['REQUEST_URI']))
- )
- ));
- $smarty->display('location-country.tpl');
- } else {
- displayError("Location not found", "Location not found, shall I call in a missing locations report?");
- }
|