This repository has been archived on 2024-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
AroMVC/index.php

14 lines
258 B
PHP
Raw Normal View History

2017-02-24 16:39:37 +00:00
<?php
namespace AroMVC;
include "auto.php";
use AroMVC\Core\Selectable;
use AroMVC\Models\Company;
$tmp = new Selectable("*");
$tmp->from("Companies")
->where("`name` = ?")
->or("`id` = ?")
->execute(["dekko", 12])
->asModels(new Company);