PHP code example of kassovicms / onyx
1. Go to this page and download the library: Download kassovicms/onyx library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kassovicms / onyx example snippets
<table id='datova_tabulka' class='pure-table pure-table-bordered'>
<thead>
<tr>
<th>Dátum zmeny</th>
<th>Zmena</th>
<th>Stroj</th>
<th>Parameter</th>
<th>Hodnota</th>
<th>Tolerancia</th>
<th>Zaznamenal</th>
<th>Stamp</th>
</tr>
</thead>
foreach ($parametre as $zakaz)
{
echo "<tr>";
echo "<td align='left'>" . date("d-M-Y", strtotime($zakaz['datum_zmeny'])) . "</td>";
echo "<td align='left'>" . $zakaz['nazov_zmeny'] . "</td>";
echo "<td align='left'>" . $zakaz['stroj'] . "</td>";
echo "<td align='left'>" . $zakaz['parameter'] . "</td>";
echo "<td align='left'>" . $zakaz['hodnota'] . "</td>\n";
echo "<td align='left'>" . $zakaz['min_stamp'] . " - " . $zakaz['max_stamp'] . "</td>/";
echo "<td align='left'>" . $zakaz['autor'] . "</td>";
echo "<td align='left'>" . $zakaz['dat_zaz'] . "</td>";
echo "</tr>";
}
$drp_data = new sqldata();
$drp_data->sql_query = "SELECT ID, sposob_oslovenia from typ_navstevy";
$drp_data_result = $drp_data->get_sql_data();
$drp = new purecss_form_control();
$drp->label = "Spôsob";
$drp->name = "sposob_oslovenia";
$drp->id = "sposob_oslovenia";
$drp->help_block = "Navštívená osoba 1";
$drp->dd_value = array_column($drp_data_result, 'ID');
$drp->dd_display = array_column($drp_data_result, 'sposob_oslovenia'); //array("Volvo", "BMW", "Toyota");
$drp->
$item = new purecss_form_control();
$item->label = "POS";
$item->name = "ID_POS";
$item->type = "number";
$item->input_value = $pos;
$item->
echo $form_action;