Show sourcecode
The following files exists in this folder. Click to view.
include_1.php
include_2_bottom.php
include_2_rnd_nr.php
include_2_top.php
index.php
ovn_in1.php
ovn_in2-4_sid1.php
ovn_in2-4_sid2.php
ovn_in2-4_sid3.php
ovn_in2_sid1.php
ovn_in2_sid2.php
ovn_in2_sid3.php
include_2_rnd_nr.php
8 lines ASCII Windows (CRLF)
<?php
function getRandomSixDigitNr(){
$nr = random_int(100000,999999);
return $nr;
}
echo(getRandomSixDigitNr());
?>