function UR_exists($url){
$headers=get_headers($url);
return stripos($headers[0],"200 OK")?true:false;
}
if(UR_exists("https://site.com/file.jpg"))
echo "Файл существует";
else
echo "Файл не существует";
ищет в таблице с заказ заказ с последним номером
получает его (номер) и присваивает ему +1 - это получается номер для нового заказа
If you need to separate sections of the menu then just add the header option to item in items
'items' => [
['label' => 'Gii', 'iconType' => 'far' 'icon' => 'file-code', 'url' => ['/gii']],
['label' => 'Debug', 'icon' => 'dashboard-alt', 'url' => ['/debug']],
['label' => 'MAIN NAVIGATION', 'header' => true], // here
// ... a group items
['label' => '', 'header' => true],
// ... a group items
['label' => '', 'header' => true],
// ... a group items
To add a badge for a item:
'items' => [
[
'label' => 'Mailbox',
'iconType' => 'far',
'icon' => 'envelope',
'url' => ['/mailbox'],
'badge' => '123'
],
]
...
'badge' => '<span class="badge badge-info right">123</span>'
...
$checked = 5;
$count = 5;
$inputs = '';
for($i = 1; $i <= $count; $i++) {
$checked_attr = $i == $checked ? ' checked' : '';
$inputs .= '<input class="rating-input" id="mod' . $i . '" name="radio-rating" type="radio" value="' . $i . '"' . $checked_attr . '>';
$inputs .= '<label class="rating-star" for="mod' . $i . '" ></label>';
}
echo '
<div class="order_right">
<div class="wrap_stars">
<form class="form-rating" method="POST">
<fieldset>
<legend></legend>
<div class="rating-group" id="el_555' . $row["products_id"] . '">
' .$inputs . '
</div>
</fieldset>
<div class="count_block">
<!-- Статистика -->
<ul class="count" >рейтинг : ' . round($row["rating"], 1 ) . '</ul>
</div>
</form>
</div>
</div>
</li>
</div>
';