if (!empty($_POST['also_not_having'])) {
    $a->not_having($_POST['also_not_having']);
}
if (!empty($_POST['starting'])) {
    $a->starting($_POST['starting']);
}
if (!empty($_POST['ending'])) {
    $a->ending($_POST['ending']);
}
$a->randomize();
$a->max($_POST['max']);
if ($_POST['sentence'] == "yes") {
    $a->sentencecase();
}
if ($_POST['somesentence'] == "yes") {
    $a->somesentence();
}
if ($_POST['uppercase'] == "yes") {
    $a->uppercase();
}
if ($_POST['loon'] == "yes") {
    $a->addloon();
}
// End Benchmark
$timer_end = microtime(true) - $timer_start;
// Define Size or use default
$filtersize = 72;
if (isset($_POST['filtersize']) && !empty($_POST['filtersize'])) {
    $filtersize = $_POST['filtersize'];
}
function change_order($words)