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.
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
include "my_lib.php";
|
|
|
|
print_header();
|
|
|
|
print_menu();
|
|
print "<hr>\n";
|
|
|
|
$query = "SELECT * FROM domain ORDER BY domain";
|
|
|
|
$result = db_query ("$query");
|
|
|
|
if ($result[rows] > 0) {
|
|
print "<table border=1 cellpadding=2 cellspacing=2 width=75%>\n";
|
|
print "<tr class=\"header\">";
|
|
print "<td>Domain</td>";
|
|
print "<td>Description</td>";
|
|
print "<td>Last Modified</td>";
|
|
print "<td> </td>";
|
|
print "</tr>";
|
|
while ($row = mysql_fetch_array ($result[result])) {
|
|
print "<tr onMouseOver=\"this.bgColor = '#dfdfdf'\" onMouseOut =\"this.bgColor = '#ffffff'\" bgcolor=\"#ffffff\">";
|
|
print "<td><a href=virtualview.php?where=$row[domain]>$row[domain]</a></td>";
|
|
print "<td>$row[description]</td>";
|
|
print "<td>$row[change_date]</td>";
|
|
print "<td><a href=delete.php?table=domain&where=domain&delete=$row[domain] onclick=\"return confirm ('Do you really want to delete all records for this domain? This can not be undone!')\">del</a></td>";
|
|
print "</tr>\n";
|
|
}
|
|
|
|
print "</table>\n";
|
|
print "<p>\n";
|
|
print "Found: $result[rows]<br>\n";
|
|
|
|
} else {
|
|
print "<p>\n";
|
|
print "Nothing Found!\n";
|
|
}
|
|
|
|
print "<p>\n";
|
|
print_footer();
|
|
?>
|