You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/pages/account/53.php

113 lines
4.2 KiB
PHTML

<? /*
LibreSSL - CAcert web application
Copyright (C) 2004-2008 CAcert Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ ?>
<?
19 years ago
$town = mysql_escape_string(stripslashes($_REQUEST['town']));
19 years ago
$regid = intval($_REQUEST['regid']);
18 years ago
$ccid = intval($_REQUEST['ccid']);
19 years ago
$start = intval($_REQUEST['start']);
$limit = 25;
echo "<div id='listshow'><ul class='top'>\n<li>";
echo "<a href='account.php?id=53'>"._("Home")."</a>\n";
$display = "";
19 years ago
if($regid > 0)
{
19 years ago
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='$regid'"));
$display = "<ul class='top'>\n<li>\n".
18 years ago
"<a href='account.php?id=53&regid=$regid'>$reg[name]</a> - <a href='account.php?action=add&id=54&regid=$regid'>Add</a>\n".
$display;
18 years ago
$ccid = $_REQUEST['ccid'] = $reg['ccid'];
}
19 years ago
if($ccid > 0)
{
19 years ago
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='$ccid'"));
$display = "<ul class='top'>\n<li>\n".
19 years ago
"<a href='account.php?id=53&ccid=$ccid'>$cnt[name]</a> - <a href='account.php?action=add&id=54&ccid=$ccid'>Add</a>\n".
$display;
}
if($display)
echo $display;
19 years ago
if($ccid <= 0)
{
echo "<ul>\n";
$query = "select * from `countries` order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
18 years ago
echo "<li><a href='account.php?id=53&ccid=${row['id']}'>$row[name]</a></li>\n";
echo "</ul>\n</li>\n</ul></div>\n<br>\n";
19 years ago
} elseif($regid <= 0) {
echo "<ul>\n";
19 years ago
$query = "select * from `regions` where `ccid`='$ccid' order by `name`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
19 years ago
{
18 years ago
echo "<li>( <a href='account.php?action=edit&id=54&regid=${row['id']}'>edit</a> |";
echo " <a href='account.php?action=delete&id=53&regid=${row['id']}'";
19 years ago
echo " onclick=\"return confirm('Are you sure you want to delete this region and all connected locations?');\">delete</a> )";
18 years ago
echo " <a href='account.php?id=53&regid=${row['id']}'>$row[name]</a></li>\n";
19 years ago
}
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
19 years ago
} elseif(intval($_REQUEST['locid']) <= 0) {
echo "<ul>\n";
if($town != "")
{
19 years ago
$query = "select * from `locations` where `regid`='$regid' and `name` < '$town'";
$start = mysql_num_rows(mysql_query($query));
}
19 years ago
$query = "select * from `locations` where `regid`='$regid' order by `name` limit $start, $limit";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
19 years ago
{
18 years ago
echo "<li>( <a href='account.php?action=move&id=54&locid=${row['id']}'>move</a> |";
echo " <a href='account.php?action=aliases&id=54&locid=${row['id']}'>aliases</a> |";
echo " <a href='account.php?action=edit&id=54&locid=${row['id']}'>edit</a> |";
echo " <a href='account.php?action=delete&id=53&locid=${row['id']}'";
echo " onclick=\"return confirm('Are you sure you want to delete this location?');\">delete</a> ) ${row['name']} (${row['lat']},${row['long']})</li>\n";
19 years ago
}
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
19 years ago
$rc = mysql_num_rows(mysql_query("select * from `locations` where `regid`='$regid'"));
if($start > 0)
{
$prev = $start - $limit;
if($prev < 0)
$prev = 0;
19 years ago
$st = "[ <a href='account.php?id=53&regid=$regid'><< Start</a> ] ";
$prev = "[ <a href='account.php?id=53&regid=$regid&start=$prev'>< Previous $limit</a> ] ";
}
if($start < $rc - $limit)
{
$next = $start + $limit;
$last = $rc - $limit;
19 years ago
$next = "[ <a href='account.php?id=53&regid=$regid&start=$next'>Next $limit ></a> ] ";
$end = "[ <a href='account.php?id=53&regid=$regid&start=$last'>End >></a> ]";
}
echo "<div id='search1'>$st</div><div id='search3'>$end</div>\n";
echo "<div id='search2'>$prev</div><div id='search4'>$next</div>\n";
19 years ago
}
?>