by admin | Nov 1, 2023 | Uncategorized
Conjugated forms Expressions with être être à l’heure/en retard/en avance (to be on time/late/early) être d’accord (avec) (to agree [with]) être de retour (to be back [from a trip or outing]) être en coton/en cuir/en briques… (to be made of cotton/leather/brick...
by admin | Nov 1, 2023 | Arrays
Motivation Used to store several values in one variable. Say you need to store your contacts. contacts = array (‘paula’,’maria’, ‘bob’ ); Adding elements to existing array $carribean = array("RD", "Jamaica", "Colombia"); $carribean[] =...
by admin | Nov 1, 2023 | work
$cars = array("a", "b", "c"); $arrlength = count($cars); for($x = 0; $x < $arrlength; $x++) { echo $cars[$x]; echo "<br>"; } echo "<hr>"; foreach($cars as $x) { echo $x; echo "<br>";...
by admin | Nov 1, 2023 | work
<?php // $str = "<h1>Africa ≠ America ÆØÅ! &+ </h1>"; // Remove HTML tags and all characters with ASCII value > 127 $str2 = filter_var($str, FILTER_SANITIZE_STRING,FILTER_FLAG_STRIP_HIGH); echo $str2; // result: Africa America !...
by admin | Oct 31, 2023 | work
Define some colors $colors2020 = array ( '#34568B', '#CD212A', '#FFA500', '#56C6A9', '#4B5335', '#798EA4', '#FA7A35', '#00758F', '#EDD59E', '#E8A798', '#9C4722', '#6B5876'...