-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalidate.php
130 lines (103 loc) · 4.24 KB
/
validate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
// Include config file
require_once "dist/php/connection.php";
// Define variables and initialize with empty values
$image = $name = $price = "";
$image_err = $name_err = $price_err = "";
// Processing form data when form is submitted
if(isset($_POST["id"]) && !empty($_POST["id"])){
// Get hidden input value
$id = $_POST["id"];
//validate image
$gambar = $_FILES['picture']['tmp_name'];
if (empty($_FILES['picture']['tmp_name'])) {
header("location: error.php");
exit();
} else{
$imgContent = addslashes(file_get_contents($gambar));
}
// Allow certain file formats $
//TO-DO!!!!!!!!!
// $input_image = base64_encode($_POST["image"]);
// if(empty($input_image)){
// $image_err = "Please choose a new image for the product.";
// } elseif(!filter_var($input_image, FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>"/^[a-zA-Z\s]+$/")))){
// $image_err = "Please choose the image again.";
// } else{
// $image = $input_image;
// }
// Validate name
$input_name = trim($_POST["name"]);
if(empty($input_name)){
header("location: error.php");
exit();
} elseif(!filter_var($input_name, FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>"/^[a-zA-Z\s]+$/")))){
$name_err = "Please enter a valid name.";
} else{
$name = $input_name;
}
// Validate price
$input_price = trim($_POST["price"]);
if(empty($input_price)){
header("location: error.php");
exit();
} elseif(!ctype_digit($input_price)){
$price_err = "Please enter a positive integer value.";
} else{
$price = $input_price;
}
// Prepare an update statement
$sql = "UPDATE products SET product_image='$imgContent', product_name='$name', product_price='$price' WHERE product_id='$id'";
// Attempt to execute the prepared statement
if(mysqli_query($conn,$sql)){
// Records updated successfully. Redirect to landing page
header("location: landing_Adminpage.php");
exit();
} else{
echo "Oops! Something went wrong. Please try again later." . mysqli_error($conn);
}
// Close connection
mysqli_close($conn);
} else{
// Check existence of id parameter before processing further
if(isset($_GET["product_id"]) && !empty(trim($_GET["product_id"]))){
// Get URL parameter
$id = trim($_GET["product_id"]);
// Prepare a select statement
$sql = "SELECT * FROM products WHERE product_id = ?";
if($stmt = mysqli_prepare($conn, $sql)){
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param($stmt, "i", $param_id);
// Set parameters
$param_id = $id;
// Attempt to execute the prepared statement
if(mysqli_stmt_execute($stmt)){
$result = mysqli_stmt_get_result($stmt);
if(mysqli_num_rows($result) == 1){
/* Fetch result row as an associative array. Since the result set
contains only one row, we don't need to use while loop */
$row = mysqli_fetch_array($result, MYSQLI_ASSOC);
// Retrieve individual field value
$imgContent = $row["product_image"];
$name = $row["product_name"];
$price = $row["product_price"];
} else{
// URL doesn't contain valid id. Redirect to error page
header("location: error.php");
exit();
}
} else{
echo "Oops! Something went wrong. Please try again later.";
}
}
// Close statement
mysqli_stmt_close($stmt);
// Close connection
mysqli_close($conn);
} else{
// URL doesn't contain id parameter. Redirect to error page
header("location: error.php");
exit();
}
}
?>