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.
27 lines
1.0 KiB
27 lines
1.0 KiB
<?php // send page properties to the db
|
|
|
|
require("../db.php3");
|
|
|
|
$connection = connect($host,$dbname);
|
|
if($connection) {
|
|
$query = "update page set ";
|
|
$query .= "title='" . trim(addslashes($title)) . "', bgimage='$bgimage', ";
|
|
$query .= "style='$style', target='$target', prev='$prev', ";
|
|
$query .= "next='$next', footer='$footer' where id='$pid'";
|
|
$result = query($connection, $query);
|
|
$rows = mysql_affected_rows($connection);
|
|
if($rows) {
|
|
header("Location: http://$domain/admin/");
|
|
// include("intro.php3");
|
|
// print("<!--\n$query\n-->\n");
|
|
// 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");
|
|
}
|
|
}
|