Sql

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • patr0805
    New Member
    • Sep 2007
    • 48

    Sql

    I have created a user system, but I just cant find out how to make new users and login to the.
    SQL server with php, aspx or html
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by patr0805
    I have created a user system, but I just cant find out how to make new users and login to the.
    SQL server with php, aspx or html

    HTML does not connect to databases. You can try using PHP or ASP.NET. Which one would you like to use.

    P.S Moved to misc. Don't post questions in the articles section.

    Comment

    • debasisdas
      Recognized Expert Expert
      • Dec 2006
      • 8119

      #3
      You need to connect to your desired database first.

      Every time a new user gets registered create a new user account in database and store all his / her details in database.

      When ever an user logs in compare his username and password with the existing database and if it matches then login.
      Maintain the session till the user logs out.

      Comment

      • patr0805
        New Member
        • Sep 2007
        • 48

        #4
        I wanr to do it with aspx, but I cant get it to work

        Comment

        • r035198x
          MVP
          • Sep 2006
          • 13225

          #5
          Originally posted by patr0805
          I wanr to do it with aspx, but I cant get it to work
          What did you try that didn't work?

          Comment

          • patr0805
            New Member
            • Sep 2007
            • 48

            #6
            I searched on the web for sql user code but noone works

            Comment

            • eWish
              Recognized Expert Contributor
              • Jul 2007
              • 973

              #7
              Can you post the a sample of the code you tried?

              Comment

              • debasisdas
                Recognized Expert Expert
                • Dec 2006
                • 8119

                #8
                Originally posted by debasisdas
                You need to connect to your desired database first.

                Every time a new user gets registered create a new user account in database and store all his / her details in database.

                When ever an user logs in compare his username and password with the existing database and if it matches then login.
                Maintain the session till the user logs out.
                Have you tried as suggested in previous posts ?

                Post the code that you have tried so far for further discussion on the topic.

                Comment

                Working...