ssl and php

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

    ssl and php

    Hello all,
    I am writing a webpage backed by php/html that takes in a user name and password.
    However, I realize the input type=password is not encrypted.

    So, I am trying to write something with ssl and https.

    Does anyone know of a tutorial that will show me how to do write
    secure php/https/ssl forms?

    Thanks,
    David



    --
    David Williams
    Georgia Institute of Technology, Atlanta Georgia, 30332
    Email: dw149@prism.gat ech.edu
  • Jerry Stuckle

    #2
    Re: ssl and php

    David Williams wrote:
    Hello all,
    I am writing a webpage backed by php/html that takes in a user name and password.
    However, I realize the input type=password is not encrypted.
    >
    So, I am trying to write something with ssl and https.
    >
    Does anyone know of a tutorial that will show me how to do write
    secure php/https/ssl forms?
    >
    Thanks,
    David
    >
    >
    >
    No need. Just use https: to access the page. The browser and Apache
    handle the encryption/decryption. Nothing different in your code.

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

    Comment

    • Dikkie Dik

      #3
      Re: ssl and php

      I do not know a good tutorial, but I suggest you "go secure" before you
      type a login and a username. So the page that asks for a login and a
      password should already be in a secure environment.



      David Williams wrote:
      Hello all,
      I am writing a webpage backed by php/html that takes in a user name and password.
      However, I realize the input type=password is not encrypted.
      >
      So, I am trying to write something with ssl and https.
      >
      Does anyone know of a tutorial that will show me how to do write
      secure php/https/ssl forms?
      >
      Thanks,
      David
      >
      >
      >

      Comment

      • David Williams

        #4
        Re: ssl and php

        Thanks Dikkie.
        I see what you are saying. There is not any special code but just put my files in an ssl environment.

        Cool. I understand now.

        I appreciate it.

        David


        Dikkie Dik <nospam@nospam. orgwrote:
        I do not know a good tutorial, but I suggest you "go secure" before you
        type a login and a username. So the page that asks for a login and a
        password should already be in a secure environment.

        David Williams wrote:
        Hello all,
        I am writing a webpage backed by php/html that takes in a user name and password.
        However, I realize the input type=password is not encrypted.

        So, I am trying to write something with ssl and https.

        Does anyone know of a tutorial that will show me how to do write
        secure php/https/ssl forms?

        Thanks,
        David

        --
        David Williams
        Georgia Institute of Technology, Atlanta Georgia, 30332
        Email: dw149@prism.gat ech.edu

        Comment

        Working...