<?php interface iSqlResultItems{ public function fetchAll(); public function fetchField($field); public function fetch();}
<?php
interface iSqlResultItems
{
public function fetchAll();
public function fetchField($field);
public function fetch();
}