* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
<!DOCTYPE html>
<html>
<head>
<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>
<?php
//SQL Database information
$host = "webdev.iyaclasses.com";
$userid = "dent_guest";
$userpw = "Acad276_Ttrojan_Dev2Ex@m";
$db = "dent_exam";
//setting up connection to SQL Database
$mysql = new mysqli(
$host,
$userid,
$userpw,
$db
);
//if connection error
if($mysql ->connect_errno){
echo "ERROR Database Connection: ";
echo $mysql -> connect_error;
exit();
}
$sql = "SELECT * from devices WHERE device_id = ".$_REQUEST["device_id"];
echo $sql;
$results = $mysql -> query($sql);
//There is some kind of error with my $results, where it's unable to read the device id but I do not have time to fix it
if(!$results){
echo " Error! ".$mysql->error;
exit();
}
$currentrow = $results -> fetch_assoc();
?>
<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>
<!-- if I had more time, I would try to fix the $_REQUESTS on the previous page so that this page actually works. I am aware that the code I have right now probably
won't actually work but I hope this represents what I was going for...-->
<tr>
<td rowspan="5" class="img">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQLSc5M0hh5A5s91IIVx16V05mno_XhawYhSZB1_wmlSpZHfbw2" class="img">
</td>
<td class="label">Name:</td>
<td class="data"><strong><em><?php echo $currentrow["name"]; ?></em></strong></td>
</tr>
<tr>
<td class="label">Price:</td>
<td><strong><?php echo $currentrow["price"]; ?></strong></td>
</tr>
<tr>
<td class="label">Manufacturer:</td>
<td><?php echo $currentrow["manufacturer"]; ?></td>
</tr>
<tr>
<td class="label">System:</td>
<td><?php echo $currentrow["system"]; ?></td>
</tr>
<tr>
<td class="label">Type:</td>
<td><?php echo $currentrow["type"]; ?></td>
</tr>
</table>
</div>
</div>
</body>
</html>