Sequential Alphanumeric Generator (v.0.1)
Want to develope a url shortener or just obtain sequential alphanumeric strings, so this php function will help you.
This repository contains the open source Sequential Alphanumeric Generator that allows you to get the next alphanumeric number passing any alphanumeric number as parameter.
the Sequential Alphanumeric Generator is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).
The examples are a good place to start. The minimal you'll need to have is:
require 'alphanumeric-generator.php';
$current_number = "aZ5sTp53x";
// Get Next Number
$next_number = anderson_makiyama_get_next_alphanumeric($current_number);