1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? require("configure.php"); ?> <? $productimageId = $_GET["productimageId"]; $productId = $_GET["productId"]; $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 ."&productId=". $productId ."&msg=Update Successful"); ?>
|