Show sourcecode
The following files exists in this folder. Click to view.
index.html
ovn_gr1.php
ovn_gr2.php
ovn_gr3a.php
ovn_gr3b.php
ovn_gr4.php
ovn_gr5.php
ovn_gr6.php
ovn_gr7.php
ovn_gr5.php
18 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>
<?php
$tal = [];
$a = 1;
for ($i = 0; $i < 10; $i++){
$tal[$i] = $a;
$a *= 2;
}
var_dump($tal);
?>
</body>
</html>