let jsVariable = <?= $phpVariable ?>;
fetch('/some/url', {
method: 'POST',
headers: {
'Content-Type': 'application/json;charset=utf-8'
},
body: JSON.stringify({some: 'object'})
}).then(res => res.json()).then(json => {
console.log(json);
})
var SummDok = document.getElementById('Summ');
SummDok.innerHTML = FloatToSamplesInWordsRus(parseFloat(10.30));
$query = Custum::find()->joinWith('order')->where(['id'=>101]); // возвращает ActiveRecord с условием where
$count_custom = $query->count(); // считает с условием where
$query->andWhere(условие); // добавляет $query условие andWhere, теперь в нем два условия: where и andWhere
$query->andWhere()
меняет объект $query. Если вам надо применить разные условия, используйте конструкцию (clone $query)->andWhere()
. if (isset($idformold) == FALSE) {$idformold = 0;};
$_POST['idform'] != $idformold
выполнится .if (isset(...) == FALSE) {...}; // не надо так
if (!isset(...)) {...} // лучше так