Sõnastik Veebirakendus

fetch()fetch() – tulemuse lugemine. Näiteks:
while ($paring->fetch()) {
        echo “<tr>”;
        echo “<td>{$presedent}</td>”;
        echo “<td><img src=’$pilt’ alt=’pilt’ style=’width:100px;’></td>”;
        echo “<td>{$punktid}</td>”;
        echo “<td>{$lisamisaeg}</td>”;
        echo “<td>”.nl2br(htmlspecialchars($kommentaarid)).”</td>”;
        echo “</tr>”;
    }
1 2 3 4