Sunda Cyber Army


* Sunda Cyber Army 2k17 *
Indonesia Defacer ~


Path : /home/dent/public_html/_demos/
File Upload :
Current File : /home/dent/public_html/_demos/addmovie.php

<?php

var_dump($_REQUEST);


$host = "webdev.iyaclasses.com";
$userid = "<youruserid>";
$userpw = "<yourpw>";
$db = "<database name>";

include '../pdloginvariables.php'; // you can ignore/skip this line

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

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

$sql = "INSERT INTO dvd_titles 
        (title, label_id, sound_id, genre_id, rating_id, format_id)
        VALUES 
        ('" . $_REQUEST["title"] . "',
         2,
         2,
         " . $_REQUEST["genre"] . ",
         " . $_REQUEST["rating"] . ",
         2)";
echo "<hr> " . $sql;

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

if(!$results) {
    echo "ERROR! " . $mysql-error;
    echo "<hr>". $sql;
} else {
    echo "SUCCESS! Record added";
}


echo "|" . $results. "|";