Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /proc/self/cwd/
File Upload :
Current File : //proc/self/cwd/update.php

<?php

$host = "webdev.iyaclasses.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 = "UPDATE dvd_titles 
    SET 
    title = '" . $_REQUEST['title'] . "',
    genre_id =  " . $_REQUEST["genre"] . ",
    rating_id= " . $_REQUEST["rating"] . "
    
    WHERE
    dvd_title_id = " . $_REQUEST["id"] ;

echo $sql;

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

if(!$results) {
    echo "EROR: " . $mysql->error;
    echo "<br>SQL: ". $sql;
}
else{
    echo "Movie UPDATED!";
}

?>