AlexNook:Песочница: различия между версиями

Материал из AlexNook
Перейти к навигацииПерейти к поиску
Строка 5: Строка 5:
<math>
<math>
\frac{1}{\sigma\sqrt{2\pi}}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right) + \frac{2}{4 \cdot 5 + \lambda}   
\frac{1}{\sigma\sqrt{2\pi}}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right) + \frac{2}{4 \cdot 5 + \lambda}   
</math>
<math>
Ca^{2+} \qquad 20-150
</math>
<math>
Mg^{2+} \qquad 20-150
</math>
<math>
Na^{+} \qquad 1000-2000
</math>
<math>
K^{+} \qquad \quad 5-50
</math>
<math>
HCO^{-}_3 \qquad 3500-5000
</math>
</math>



Версия 07:53, 23 марта 2024

Expression

38

TeX


Geshi

<?php
class ModuleNews extends Module
{
	public function init()
	{
		$this->document = new DocumentX($this->name);
		$this->document->custom_xslt = true;
	}
	
	/**
	 * Выводим список новостей
	 * @param $arg->page->value принимает номер страницы
	 */
	
	public function ActionBrowsenews(ActionArgs $arg)
	{
		// мы должны были получить номер страницы...
		if ( !isset($arg->page->value)) $arg->page = new Argument(1, Argument::integer);
		// селекты...
		$db=Application::$db;
		// ....
	}
}
?>