<html>
<?php
$style = file_get_contents('cmsadmin/config.txt');
$styleTwo = $style."cmsadmin/index.html";
include_once($styleTwo);
?>
</html>
$ct = count ($input);
$cts = count($inputShare);
for ($i=0 ; $i <= $ct ; $i++ ) {
for ($k=0 ; $k <= $cts ; $k++) {
if ($inputShare[$k] == $input[$i]) {
unset($input[$i]);
break 1;
}
}
}