Hey, I'm fairly new to java. I was hoping someone could give me a pseudo code like description of what I'm trying to do so I know where to start my researching.

In my program:

-Users will register a username, password, and weblink to their account.

-There will be restrictions to the password in length and similarity to username.

-There will be restrictions to the username in length and availibility.

-There will be restrictions to the weblink in availibility.

-All 3 of these things to be saved to an online database that only I have access to.

How should I go about this?

Thanks tons :)

I am guessing that you will be creating this on JSP.
For staters you could get help with below:

1)Users will register a username, password, and weblink to their account

Create two textboxes namely 'username' and 'passwd', and one submit button.

2)There will be restrictions to the password in length and similarity to username.

You could use javascript to test the length of the username and password.

3)There will be restrictions to the username in length and availibility

For username availablity, you could use AJAX and connect to the database to query the username table if it exists or not.

4)All 3 of these things to be saved to an online database that only I have access to.

On clicking the submit button, save all the fields to the database.

I hope this helps.

Try coding it and you will find you way..

Cheers !!!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.