21 lines
428 B
PHP
21 lines
428 B
PHP
|
<?php
|
||
|
/*
|
||
|
* To change this template, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
|
||
|
class Application_Model_PaysGiants extends Zend_Db_Table_Abstract
|
||
|
{
|
||
|
protected $_name = 'pays_giants';
|
||
|
public function getPays($pays)
|
||
|
{
|
||
|
$sql = $this->select()
|
||
|
->where('pays = ?', $pays);
|
||
|
$result = $this->getAdapter()->fetchRow($sql);
|
||
|
return ($result);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|