0

I have this error on my app A PHP Error was encountered Severity: Warning Message: Undefined property: stdClass::$nama_kriteria Filename: views/print.php Line Number: 64 Backtrace: File: C:\xampp\htdocs\wp\application\views\print.php Line: 64 Function: _error_handler File: C:\xampp\htdocs\wp\application\controllers\Penilaian.php Line: 140 Function: view File: C:\xampp\htdocs\wp\index.php Line: 315 Function: require_once

and this is my code

<?php
        $no = 0;
        foreach ($hasil as $row) : ?>
            <tr>
                <td class="center"><?= ++$no ?></td>
                <td><?= $row->nama_alternatif ?></td>
                <td><?= $row->nama_kriteria ?></td>
                <td><?= $row->nama_alternatif ?></td>
                <td><?= $row->nama_alternatif ?></td>
                <td><?= $row->nama_alternatif ?></td>
                <td><?= $row->nama_alternatif ?></td>
                <td class="center"><?= floatval($row->nilai) ?></td>
            </tr>
        <?php endforeach; ?>

I haven't changed the rest of the row, cuz the second one is still error. is anyone can help me with this kind of error?

  • error says "Undefined property: `stdClass::$nama_kriteria`", please find the explanation in the duplicate link – Vickel Dec 27 '21 at 01:52

0 Answers0