Show sourcecode
The following files exists in this folder. Click to view.
upg1.php
upg2.php
upg3.php
upg4.php
upg5.php
upg6.php
upg2.php
13 lines ASCII Windows (CRLF)
<?php
$antal = 10;
function hej(){
global $antal;
for($i= 0; $i<$antal; $i++){
print("Hejsvejs");
}
}
hej();
?>