Sõnastik(Web)

Canvas – draw graphics
COMMIT – Saves changes to a Git repository
Contenteditable – Specify whether the content of an element should be editable or not. <blockquote contenteditable=”true”> <p>Edit this content to add your own quote</p> </blockquote> <cite contenteditable=”true”>– Write your own name here</cite>
CSS – Cascading Style Sheets. Is a style sheet language used for specifying the presentation and styling of a document
CSS – Cascading Styleheets – veebilehe kujunduse loomiseks loodud fail
Execute() – See on meetod (PHP´is),  mis käivitab eelnevalt ettevalmistatud SQL-päringu täitmise. // 1. Päringu ettevalmistamine mängukastidega
global $connect;
        $paring=$connect->prepare(“
Select id, president, pilt, punktid, lisamisaeg  from valimused where avalik=1″);
        $paring->bind_result($id, $president, $pilt, $punktid, $lisamisaeg);
// 2. Päringu täitmine andmete edastamisega
        $paring->execute();
fetch() – See on meetod(PHP’is), mida kasutatakse ühe järgmise rea väljavõtmiseks tulemuste kogumist, mis saadakse pärast SQL-päringu täitmist.  
<?php
        global $connect;
        $paring=$connect->prepare(“
Select id, president, pilt, punktid, lisamisaeg  from valimused where avalik=1″);
        $paring->bind_result($id, $president, $pilt, $punktid, $lisamisaeg);
        $paring->execute();
// Võtame välja ühe rea korraga
        while($paring->fetch()){
            echo “<tr>”;
            echo “<td>”.$president.”</td>”;
            echo “<td><img src=\”$pilt\” alt=\”piltuu\”></td>”;
            echo “<td>”.$punktid.”</td>”;
            echo “<td>”.$lisamisaeg.”</td>”;
            echo “<td><a href=’?lisa1punktid=$id’> +1 punkt</a></td>”;
            echo “<td><a href=’?kustuta1punktid=$id’> -1 punkt</a></td>”;
            echo “</tr>”;
        }
        ?>
FLEX – CSS layout for flexible box arrangement
font-family – property is used to change the font of an element
Footer – <footer> HTML element,kus pannakse veebilehe jalus.
1 2 3 4 6