<b>phpAG</b> is an anagram generator written in PHP.<br /><br />
It takes any string as input and can output whether all permutations or only meaningfull anagrams i.e. permutations corresponding to words stored in a separated text file.
License
GNU General Public License version 2.0 (GPLv2)Follow phpAG - PHP Anagram Generator
Other Useful Business Software
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
Rate This Project
Login To Rate This Project
User Reviews
-
Can anyone indicate where to put "$word = $_POST['word']; and $action = $_POST['action']; " so this works?
-
Great little script, but be aware, if you are using php5.3 an error occurs on line 81 if (ereg ("[\<\>\\\"\']", $word)) just change it to if (preg_match ("[\<\>\\\"\']", $word)) I've also had to enclude $word = $_POST['word']; and $action = $_POST['action']; so that it works correctly.