Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6170851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:06:43+00:00 2026-05-23T23:06:43+00:00

I want to write my own URL shortener using php and mysql as a

  • 0

I want to write my own URL shortener using php and mysql as a tester to see how much I know about the two languages? However I don’t know what is needed to do so or where to start. Please could someone give me a list of what needs to be done in order to create/write a successful URL shortener?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T23:06:43+00:00Added an answer on May 23, 2026 at 11:06 pm

    All you need is a short domain name.

    Then you can have a simple MySQL table with two columns: Id (the primary key with auto increment) and Url. Which should probably be a TEXT or something. Since varchar 255 might be too short.

    Then set up your .htaccess so that a url like domain.com/a21s1 gets converted to domain.com?url=a21s1

    That’d be something along the lines of:

    RewriteRule ^(?:.*)domain\.com/(.*)/?$ domain.com?url=$1
    

    Then in php do something like:

    if(isset($_GET['url'])){
        $url = base_convert((int)$_GET['url'],36,10);
        $result = mysql_query('SELECT `Url` FROM `My Table` WHERE `Id` = '.$url);
        $row = mysql_fetch_row($result);
        $url = $row[0];
    }else
        $url = 'http://domain.com/yourhomepage';
    
    header('location: '.$url);
    

    You’d also want to have sanity checks when users input a new url to add you would regex it to make sure it’s a url, and if it’s missing http:// prepend it to the url.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write batch file for my own php framework. for example i
I want to write my own version of url rewriting for my app, but
i want to write my own download manager using c++(qt4) but i have no
Hello I want write my own desktop sharing application in Java. The application should
I want to write a browser-chat and write an own server in c++, because
I want to use Powershell to write some utilities, leveraging our own .NET components
How to write a getter that can not be deleted? I want to own
I want to write a web service using Visual Studio. The service needs to
I want to write my own port monitor for virtual printer app. Now i
I want to write a url shorten service. I trying to think of scenarios

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.