Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
$x = 0;
$alphabet = array("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
while ($x < 26) {
echo ':' . $x . ':' . $alphabet[0][$x] . '<br />'; $x++;
}
?>
$var = 'abcdefghijklmnop';
for ($i=0; $i<strlen($var); $i++){
echo $var{$i};
echo "<br/>";
}
$start = 'a';
$end = 'z';
for ($i=ord($start); $i<=ord($end); $i++){
$letters[] = chr($i);
$letters[] = strtoupper(chr($i));
}
echo "<pre>".print_r($letters, true)."</pre>";