Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /home/dent/public_html/demo5a/
File Upload :
Current File : /home/dent/public_html/demo5a/details_drilldown.php

<?php

echo "recordid=" . $_REQUEST["recordid"];

$host = "webdev.iyaserver.com";
$userid = "[youruserid]";
$userpw = "[yourpw]";
$db = "[database name]";

include '../pdloginvariables.php';

$mysql = new mysqli(
    $host,
    $userid,
    $userpw,
    $db
);

if($mysql->connect_errno) {
    echo "db connection error : " . $mysql->connect_error;
    exit();
}

$sql = "SELECT * FROM movieView2 WHERE dvd_title_id =".
    $_REQUEST["recordid"];

$results = $mysql->query($sql);

while($currentrow = $results->fetch_assoc()) {
    echo "<h1>" . $currentrow["title"] . "</h1>" .
    "<br>" .
    "Genre: " . $currentrow["genre"] .
    "<br>".
    "Rating: " . $currentrow["rating"];
}