Answers for "php while loop of alphabet"

PHP
0

php while loop of alphabet

// php loop alphabet in foundation buttons with url params as links
        foreach (range('a', 'z') as $alphabet) {
            echo "<a class=\"button" href=\"example.com?letter=" . $alphabet . "\">" . strtoupper($alphabet) . "</a>";
        }
Posted by: Guest on September-01-2020

Browse Popular Code Answers by Language