This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
ModuleWeb/SRC/app/controllers/testBd.php

9 lines
206 B
PHP

<?php
class testBd extends BaseController {
public function getS()
{
$r = DB::select('select s from test where id = 1');
return View::make('testBd', array('s' => $r[0]->s));
}
}