Helper\PageData::bindValue PHP Method

bindValue() public method

Binds a value to a parameter
See also: PDOStatement::bindValue
public bindValue ( mixed $parameter, mixed $value, integer $data_type = Database::PARAM_STR )
$parameter mixed
$value mixed
$data_type integer
    public function bindValue($parameter, $value, $data_type = Database::PARAM_STR)
    {
        $this->countQuery->bindValue($parameter, $value, $data_type);
        $this->query->bindValue($parameter, $value, $data_type);
    }