Bonjour, je débute et y’a un truc que j’arrive pas à faire.
Je calcul une valeur dans un controller et souhaite l’afficher dans l’index de ce controller.
Comment fait-on?
exemple :
le controller
public function actionDatemax(){
$sql = "select MAX(dateexpedition) as date_max from expeditions";
$rows = Yii::app()->db->createCommand($sql)->queryAll();
$date_max = $rows[0]['date_max'];
return $date_max;
}
la vue:
<?php
$this->breadcrumbs=array(
'Pms',
);
$this->menu=array(
array('label'=>'Create Pms', 'url'=>array('create')),
array('label'=>'Manage Pms', 'url'=>array('admin')),
);
?>
<h1>Pms</h1>
<?php echo $date_max;?>
));?>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
));
?>
Merci