Secure Login

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sintacks

    Secure Login

    Does anyone have the source, class, or link for a secure login using
    sessions? Preferably with MySQL. Any help would be greatly appreciated.
    Thank you very much.

  • Jerry Stuckle

    #2
    Re: Secure Login

    sintacks wrote:
    Does anyone have the source, class, or link for a secure login using
    sessions? Preferably with MySQL. Any help would be greatly appreciated.
    Thank you very much.
    >
    No links. Something like this is very easy. When I need it I just
    write my own - it's only a few lines of code.

    Much faster than trying to find a script then adapt it to my needs. I
    generally would end up rewriting a large part of the code anyway.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • feelinglucky

      #3
      Re: Secure Login

      Why not PEARs: http://pear.php.net/

      "Jerry Stuckle дµÀ£º
      "
      sintacks wrote:
      Does anyone have the source, class, or link for a secure login using
      sessions? Preferably with MySQL. Any help would be greatly appreciated.
      Thank you very much.
      >
      No links. Something like this is very easy. When I need it I just
      write my own - it's only a few lines of code.
      >
      Much faster than trying to find a script then adapt it to my needs. I
      generally would end up rewriting a large part of the code anyway.
      >
      --
      =============== ===
      Remove the "x" from my email address
      Jerry Stuckle
      JDS Computer Training Corp.
      jstucklex@attgl obal.net
      =============== ===

      Comment

      • Moot

        #4
        Re: Secure Login

        sintacks wrote:
        Does anyone have the source, class, or link for a secure login using
        sessions? Preferably with MySQL. Any help would be greatly appreciated.
        Thank you very much.
        I used this article as the basis for my security system:
        Founded in 1997, DEVShed is the perfect place for web developers to learn, share their work, and build upon the ideas of others.


        I didn't use any of the actual code, so I can't vouch for it, but the
        ideas discussed did help guide me as I wrote my own user authentication
        system.

        Comment

        • Jerry Stuckle

          #5
          Re: Secure Login

          feelinglucky wrote:
          Why not PEARs: http://pear.php.net/
          >
          "Jerry Stuckle дµÀ£º
          "
          >
          >>sintacks wrote:
          >>
          >>>Does anyone have the source, class, or link for a secure login using
          >>>sessions? Preferably with MySQL. Any help would be greatly appreciated.
          >>>Thank you very much.
          >>>
          >>
          >>No links. Something like this is very easy. When I need it I just
          >>write my own - it's only a few lines of code.
          >>
          >>Much faster than trying to find a script then adapt it to my needs. I
          >>generally would end up rewriting a large part of the code anyway.
          >>
          >>--
          >>============= =====
          >>Remove the "x" from my email address
          >>Jerry Stuckle
          >>JDS Computer Training Corp.
          >>jstucklex@att global.net
          >>============= =====
          >
          >
          Takes longer to install that it does to write the code in the first
          place. Then you still have to write the PEAR code, which takes just as
          long as it does without PEAR.

          PEAR is good for a number of things. But it's huge overkill for a
          simple authentication/authorization mechanism.

          --
          =============== ===
          Remove the "x" from my email address
          Jerry Stuckle
          JDS Computer Training Corp.
          jstucklex@attgl obal.net
          =============== ===

          Comment

          • sintacks

            #6
            Re: Secure Login

            you are absolutely correct. and even though i am a beginner, i could
            probably program something like this quicker than installing one.
            However, for me...installing a preprogrammed one also gives me added
            functionality that i would not have thought of thus teaching me as
            well. But you are absolutely correct if i had a higher understanding of
            these concepts.

            On Nov 10, 8:21 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
            feelinglucky wrote:
            Why not PEARs:http://pear.php.net/
            >
            "Jerry Stuckle 写道:
            "
            >
            >sintacks wrote:
            >
            >>Does anyone have the source, class, or link for a secure login using
            >>sessions? Preferably with MySQL. Any help would be greatly appreciated.
            >>Thank you very much.
            >
            >No links. Something like this is very easy. When I need it I just
            >write my own - it's only a few lines of code.
            >
            >Much faster than trying to find a script then adapt it to my needs. I
            >generally would end up rewriting a large part of the code anyway.
            >
            >--
            >============== ====
            >Remove the "x" from my email address
            >Jerry Stuckle
            >JDS Computer Training Corp.
            >jstuck...@attg lobal.net
            >============== ====Takes longer to install that it does to write the code in the first
            place. Then you still have to write the PEAR code, which takes just as
            long as it does without PEAR.
            >
            PEAR is good for a number of things. But it's huge overkill for a
            simple authentication/authorization mechanism.
            >
            --
            =============== ===
            Remove the "x" from my email address
            Jerry Stuckle
            JDS Computer Training Corp.
            jstuck...@attgl obal.net
            =============== ===

            Comment

            • R. Rajesh Jeba Anbiah

              #7
              Re: Secure Login

              sintacks wrote:
              Does anyone have the source, class, or link for a secure login using
              sessions? Preferably with MySQL. Any help would be greatly appreciated.
              <news:111099185 5.257652.244240 @z14g2000cwz.go oglegroups.com(
              http://groups.google.com/group/comp....0fad0eef59415a )

              --
              <?php echo 'Just another PHP saint'; ?>
              Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/

              Comment

              Working...