One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <?php | |
| /** | |
| * Recursive function to generate a unique username. | |
| * | |
| * If the username already exists, will add a numerical suffix which will increase until a unique username is found. | |
| * | |
| * @param string $username | |
| * | |
| * @return string The unique username. | |
| */ |