tell me what you think of this:
<?php
function head(){
$header = "header.php";
include($header);
return true;
}
function foot(){
$footer = "footer.php";
$inc = include($footer);
return true;
}
function arr(){
$array = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z',
'0','1','2','3','4','5','6','7','8','9');
$text = $array[rand(0,35)];
return $text;
}
head();
$a = arr(); $b = arr(); $c = arr(); $d = arr(); $e = arr(); $f = arr(); $g = arr(); $h = arr(); $i = arr(); $j = arr(); $k = arr(); $l = arr(); $m = arr();
$n = arr(); $o = arr(); $p = arr(); $q = arr(); $r = arr(); $s = arr(); $t = arr(); $u = arr(); $v = arr(); $w = arr(); $x = arr(); $y = arr(); $z = arr();
echo $a.$b.$c.$d.$e.$f.$g.$h.$i.$j.$k.$l.$m.$n.$o.$p.$q.$r.$s.$t.$u.$v.$w.$x.$y.$z;
$pass = md5($a.$b.$c.$d.$e.$f.$g.$h.$i.$j.$k.$l.$m.$n.$o.$p.$q.$r.$s.$t.$u.$v.$w.$x.$y.$z);
echo $pass;
foot();
?>