mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-02-15 03:11:58 +00:00
12 lines
290 B
PHP
12 lines
290 B
PHP
|
<?php
|
||
|
/* @var $this \yii\web\View */
|
||
|
/* @var $result array */
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
?>
|
||
|
|
||
|
<?php if(isset($result["photo"])): ?>
|
||
|
<img src="data:image/gif;base64,<?=$result["photo"];?>" height="50" style="margin-right: 7px;">
|
||
|
<?php else: ?>
|
||
|
Фото не найдено
|
||
|
<?php endif; ?>
|