-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.php
More file actions
31 lines (31 loc) · 1.73 KB
/
edit.php
File metadata and controls
31 lines (31 loc) · 1.73 KB
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
<?php
include('configTrumbullIndustries.php');
$id=$_GET['id'];
$query=mysqli_query($conn,"select * from `sample-data` where ID='$id'");
$row=mysqli_fetch_array($query);
?>
<!DOCTYPE html>
<html>
<head>
<title>Edit Trumbull Industries</title>
</head>
<body>
<h2>Edit</h2>
<form method="POST" action="update.php?id=<?php echo $id; ?>">
<label>ID:</label><td><?php echo $row['ID'];?></td><br>
<label>SKU:</label><input type="text" value="<?php echo $row['SKU']; ?>" name="SKU"><br>
<label>TSI:</label><input type="text" value="<?php echo $row['TSI']; ?>" name="TSI"><br>
<label>VENDOR:</label><input type="text" value="<?php echo $row['VENDOR']; ?>" name="VENDOR"><br>
<label>BRAND:</label><input type="text" value="<?php echo $row['BRAND']; ?>" name="BRAND"><br>
<label>SHIPPING TEMPLATE:</label><input type="text" value="<?php echo $row['SHIPPING TEMPLATE']; ?>" name="SHIPPING_TEMPLATE"><br>
<label>TEMPLATE CODE:</label><input type="text" value="<?php echo $row['TEMPLATE CODE']; ?>" name="TEMPLATE_CODE"><br>
<label>INSTOCK LEADTIME:</label><input type="text" value="<?php echo $row['INSTOCK LEADTIME']; ?>" name="INSTOCK_LEADTIME"><br>
<label>NOSTOCK LEADTIME:</label><input type="text" value="<?php echo $row['NOSTOCK LEADTIME']; ?>" name="NOSTOCK_LEADTIME"><br>
<label>QUANTITY:</label><input type="text" value="<?php echo $row['QUANTITY']; ?>" name="QUANTITY"><br>
<label>OBSOLETE:</label><input type="text" value="<?php echo $row['OBSOLETE']; ?>" name="OBSOLETE"><br>
<label>IS UPDATED:</label><input type="text" value="<?php echo $row['IS UPDATED']; ?>" name="IS_UPDATED"><br>
<input type="submit" name="Submit Button">
<a href="adminPanel.php">Back</a>
</form>
</body>
</html>