* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
<?php
$host = "webdev.iyaserver.com";
$userid = "dent_test";
$userpw = "Acad276_Ttrojan_Dev2Ex@m";
$db = "dent_exam";
$mysql = new mysqli(
$host,
$userid,
$userpw,
$db
);
if($mysql->connect_errno) {
echo "db connection error : " . $mysql->connect_error;
exit();
}
?>
<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">
<?php
$sql = "
SELECT device.deviceid, device.name AS name, device.price,
make.manufacturer AS manufacturer_name,
os.system AS system_name,
devicetype.type AS type_name,
device.img_url
FROM device, make, os, devicetype
WHERE device.manufacturer_id = make.manufacturer_id
AND device.system_id = os.system_id
AND device.type_id = devicetype.type_id
";
$results = $mysql->query($sql);
$device = $results->fetch_assoc();
?>
//table not complete to show data
<table>
<tr>
<td rowspan="5" class="img">
<img src="<?php echo $device['img_url']; ?>" alt="<?php echo $device['name']; ?>" class="img">
</td>
<td class="label">Name:</td>
<td class="data"><strong><em><?php echo $device['name']; ?></em></strong></td>
</tr>
</table>
<!-- <table>-->
<!-- <tr>-->
<!-- <td rowspan="5" class="img">-->
<!-- <img src=""device.image_url"" class="img">-->
<!-- </td>-->
<!-- <td class="label">Name:</td>-->
<!-- <td class="data"><strong><em>Pixel</em></strong></td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td class="label">Price:</td>-->
<!-- <td><strong>549.00</strong></td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td class="label">Manufacturer:</td>-->
<!-- <td>Apple</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td class="label">System:</td>-->
<!-- <td>iOS</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td class="label">Type:</td>-->
<!-- <td>Smartphone</td>-->
<!-- </tr>-->
<!-- </table>-->
</div>
</div>
</body>
</html>