* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
<?php
$DB_HOST = "webdev.iyaserver.com";
$DB_USER = "dent_test";
$DB_PASS = "Acad276_Ttrojan_Dev2Ex@m";
$DB_NAME = "dent_exam";
if (!isset($_GET['id']) || !is_numeric($_GET['id'])) {
header("Location: search.php");
exit;
}
$device_id = (int)$_GET['id'];
$conn = mysqli_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME);
if (!$conn) { die("DB connection error: " . mysqli_connect_error()); }
$sql = "SELECT d.name, d.price, d.img_url, m.manufacturer, o.system, t.type
FROM device d
JOIN make m ON d.manufacturer_id = m.manufacturer_id
JOIN os o ON d.system_id = o.system_id
JOIN devicetype t ON d.type_id = t.type_id
WHERE d.device_id = $device_id
LIMIT 1";
$rs = mysqli_query($conn, $sql);
if (!$rs) { die("SQL error (details): " . mysqli_error($conn)); }
if (mysqli_num_rows($rs) === 0) {
header("Location: search.php");
exit;
}
$row = mysqli_fetch_assoc($rs);
$img = trim($row['img_url']) !== "" ? $row['img_url'] : "https://image.shutterstock.com/image-vector/vector-sketch-illustration-human-hand-260nw-605728496.jpg";
?>
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Acad276 Practical Exam: Details</title>
<style>
.container {
width: 800px;
margin: auto;
}
h1 {
margin: auto;
text-align: center;
background-color: #900;
color: #FC0;
height: 60px;
line-height: 60px;
}
.details {
border: 1px solid #990000;
width: 600px;
margin: auto;
margin-top: 20px;
padding: 20px;
}
table {
height: 300px;
width: 100%;
}
table img {
height: 300px;
}
img {
width: 300px;
}
.label {
text-align: right;
width: 20%;
padding: 3px 10px 3px;
}
.data {
width: 40%;
}
.input>input, .input>select {
width: 100%;
}
.nav-link{
margin: 10px 0px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>Mobile Device Database: Details Page</h1>
<div class="nav-link">
<a href="search.php"><< Back to Search Page</a>
</div>
<div class="details">
<table>
<tr>
<td rowspan="5" class="img"><img src="<?php echo htmlspecialchars($img); ?>"></td>
<td class="label">Name:</td>
<td class="data"><strong><em><?php echo htmlspecialchars($row['name']); ?></em></strong></td>
</tr>
<tr>
<td class="label">Price:</td>
<td><strong><?php echo htmlspecialchars($row['price']); ?></strong></td>
</tr>
<tr>
<td class="label">Manufacturer:</td>
<td><?php echo htmlspecialchars($row['manufacturer']); ?></td>
</tr>
<tr>
<td class="label">System:</td>
<td><?php echo htmlspecialchars($row['system']); ?></td>
</tr>
<tr>
<td class="label">Type:</td>
<td><?php echo htmlspecialchars($row['type']); ?></td>
</tr>
</table>
</div>
</div>
</body>
</html>
<?php
mysqli_free_result($rs);
mysqli_close($conn);
?>