1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? require("configure.php"); ?> <? $productimageid = $_GET["productimageid"]; $productcatid = $_GET["productcatid"]; $image = $_GET["image"];
//if ($image <> "") $sql = "update productimage set image = '' where productimageid=". $productimageid ." ";
mysql_query($sql); mysql_close($dbh);
header("Location: productimagemodifyform.php?productimageid=". $productimageid ."&productcatid=". $productcatid ."&msg=Update Successful"); ?>
|