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

  1. <?php // send page properties to the db
  2. require("../db.php3");
  3. $connection = connect($host,$dbname);
  4. if($connection) {
  5. $delete = "delete from item where id = '$id'";
  6. $result = query($connection, $delete);
  7. $rows = mysql_affected_rows($connection);
  8. if($rows) {
  9. $q2 = "update page set changed=NULL where id=$pid";
  10. $update = query($connection, $q2);
  11. header("Location: http://$domain/admin/page_edit.php3?pid=$pid");
  12. // include("intro.php3");
  13. // print("<div class=center>\n");
  14. // print("<b>Database Successfully updated...<hr width=50%></b><br><br>\n");
  15. // print("<a href=\"index.php3\"><img src=\"btn.php3?label=Page+List ");
  16. // print("alt=\"Page List\" border=0></a><br><br>\n");
  17. // print("<a href=\"page_edit.php3?pid=$pid\"><img src=\"btn.php3?label=");
  18. // print("Item+List\" alt=\"Item List\" border=0></a><br>\n");
  19. } else {
  20. $error = mysql_error($connection);
  21. print("database error: $error\n");
  22. }
  23. }