Olive Branch MS Chamber of Commerce (circa Oct 1999)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

25 lines
956 B

<?php // send page properties to the db
require("../db.php3");
$connection = connect($host,$dbname);
if($connection) {
$delete = "delete from item where id = '$id'";
$result = query($connection, $delete);
$rows = mysql_affected_rows($connection);
if($rows) {
$q2 = "update page set changed=NULL where id=$pid";
$update = query($connection, $q2);
header("Location: http://$domain/admin/page_edit.php3?pid=$pid");
// include("intro.php3");
// print("<div class=center>\n");
// print("<b>Database Successfully updated...<hr width=50%></b><br><br>\n");
// print("<a href=\"index.php3\"><img src=\"btn.php3?label=Page+List ");
// print("alt=\"Page List\" border=0></a><br><br>\n");
// print("<a href=\"page_edit.php3?pid=$pid\"><img src=\"btn.php3?label=");
// print("Item+List\" alt=\"Item List\" border=0></a><br>\n");
} else {
$error = mysql_error($connection);
print("database error: $error\n");
}
}