PMA\libraries\DisplayResults::__construct PHP Method

__construct() public method

Constructor for DisplayResults class
public __construct ( string $db, string $table, string $goto, string $sql_query )
$db string the database name
$table string the table name
$goto string the URL to go back in case of errors
$sql_query string the SQL query
    public function __construct($db, $table, $goto, $sql_query)
    {
        $this->_setDefaultTransformations();
        $this->__set('db', $db);
        $this->__set('table', $table);
        $this->__set('goto', $goto);
        $this->__set('sql_query', $sql_query);
        $this->__set('unique_id', rand());
    }
DisplayResults