1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php require("configure.php"); ?> <? $pagecontentid = $_POST["pagecontentid"]; $catid = $_POST["catid"];
$pagecontentdesc = preg_replace("/'/","\'",$_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"); ?>
|