Example #1
0
function makeVillain()
{
    createVillain();
    $c_table = 'npc';
    if (!empty($_GET['id'])) {
        $c_data = createDataFromPost($c_table);
        $constraints = ['id' => $_POST['npc_id']];
        updateWithConstratints($c_table, $c_data, $constraints);
    }
}
Example #2
0
<?php

include_once '../../config/config.php';
require_once $serverPath . 'utils/security/createAssestRequired.php';
include_once $serverPath . 'utils/db/db_post.php';
require_once $serverPath . 'utils/generator/villain.php';
createVillain();
$table = "villain";
header("Location: " . $baseURL . "assets/villains/show.php?id=" . insertFromPostWithIdReturn($table));