Sõnastik(Web)

Margins – The CSS margin properties are used to create space around elements, outside of any defined borders. Margins define the distance between an element’s border and the surrounding elements.
Meter – HTML element is used to display a scalar measurement within a range.<meter>
Nav (HTML) – <nav> – HTML element, mis määrab navigeerimisbloki, mis sisaldab linke teistele lehtedele või saidi osadele.
new mysqli(hostname,?,?,?)
konstruktor uue mysqli-klassi objekti loomiseks. Seda kasutatakse ühenduse loomiseks MySQL-andmebaasi serveriga.
$servernimi = ******
$kasutajanimi = ‘*****
$parool=*******
$andmebaasinimi = ****
$connect = new mysqli($servernimi, $kasutajanimi, $parool, $andmebaasinimi);
$connect->set_charset(“utf8”);
PHP – Väljasta üks või mitu stringi Output one or more strings echo “hello”; echo “world”;
prepare(?) – See on meetod (PHP-s), mis loob SQL-päringu malli andmebaasi serveris.  
function lisaPresident($presidentNimi, $pilt)
{
    global $connect;
// Loome malli
    $paring = $connect->prepare(
        “INSERT INTO valimused (president, pilt, punktid, lisamisaeg, kommentaarid) VALUES (?, ?, 0, NOW(), ‘ ‘)”
    );
// Sidume andmed „?“-ga ja täidame
    $paring->bind_param(“ss”, $presidentNimi, $pilt);
    $paring->execute();
}
PROPERTY – A CSS style characteristic, like color or font
quotation – The <q> tag defines a short quotation. Browsers normally insert quotation marks around the quotation.
Required – attribute is used to specify that an input field must be filled out. <required>
SCRIPT – HTML tag for embedding client-side code
1 2 3 4 5 6