1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php require("configure.php"); ?> <? $pagecontentid = $_POST["pagecontentid"]; $catid = $_POST["catid"]; //$contenttitle = $_POST["contenttitle"]; //$contenttitle = str_replace("'", "\'",$contenttitle); //$contenttitle = str_replace("\"", """, $contenttitle); //$contenttitle = htmlspecialchars($contenttitle, ENT_QUOTES);
$pagecontentdesc = $_POST["pagecontentdesc"];
$sql = "update pagecontent set pagecontentid='$pagecontentid', catid='$catid', pagecontentdesc='$pagecontentdesc' "; $sql .= " where pagecontentid=". $pagecontentid ." "; //echo $sql; mysql_query($sql); mysql_close($dbh);
header("Location: categoriesindex.php?pid=$catid&msg=Modify Product Successful"); ?>
|