Skip to content

URL Shortener using Auto-Increment field.

Good Night,

This is a new version of URL-Shortener that don’t create random IDs to websites, it uses the auto-increment field and replace it to other base.

It was necessary to create two new methods
[code lang=”php”]
function convertDecimalTo($decimal,$newBase,$str,$letters) {
if ($decimal >= $newBase) {
$x = $decimal % $newBase;
$y = $decimal / $newBase;
$str = $letters{$x} . $str;
if ($y < $newBase) { $str = $letters{$y} . $str; } return convertDecimalTo($y,$newBase,$str,$letters); } else { if (strlen($str) == 0) { $str = $letters{$decimal} . $str; } return $str; } } function convertBaseToDecimal($value,$newBase,$letters) { $sum = 0; $len = strlen($value); $end = $len-1; for ($x=$end;$x>=0;$x–) {
$sum = $sum + strpos($letters,$value{$x}) * pow($newBase,($end – $x));
}
return $sum;
}
[/code]

You can download the full new version to PHP4
URL Shortener (LURL) using auto increment field to generate the “TAG”

Hope you enjoy,
Matheus

Chart to your URL Shortener with Statistics. PHP4

Published inAprendendoCodeMySQLphp

6,803 Comments

  1. european online casinos real money usa players free spins, best
    online pokies united kingdom forum and free online gambling united states, or canadian no deposit casino bus from brampton to niagara falls (Alvin) 2021

  2. gambling statistics uk 2021, no deposit required online can you make
    money from the casino, Shelia, usa and
    best payout gambling sites usa, or new zealandn slots app

  3. Terrymep Terrymep

    В Санкт-Петербурге работают различные частные клиники, поэтому необходимо внимательно выбирать учреждение. Важны лицензия, штат врачей, опыт работы, профессиональные награды, медицинская база, комфортные помещения, график приема и наличие круглосуточной службы. Квалифицированные сотрудники должны доброжелательно относиться к пациенту и родным, обеспечивать защиту персональных данных и человеческое отношение даже в сложных случаях.
    Ознакомиться с деталями – наркологическая клиника Санкт-Петербург

Leave a Reply

Your email address will not be published. Required fields are marked *