Ask a Question related to PHP Development, Design and Development.
-
BKDotCom #1
secure form on a non-secure page -> how?
Perhaps not PHP specific, but:
Both [url]http://www.bankofamerica.com/[/url] and [url]http://www.bankone.com/[/url]
have account login forms on their non-secure main pages.
How on earth are they accomplishing this?
Please enlighten me.
BKDotCom Guest
-
Secure Form
I've tried forms befor but every time i never seem to get them right, what im trying to do is make a form that collects personal detail from... -
Secure PDF's merged into 1 document from 2 different Secure Files, possible?
I have multiple Secured PDF files that I have created. There is a possibility that my end user will need to merge multiple PDF files into 1 main PDF,... -
secure intranet site with non secure sites?
I log into a domain open an secure intranet site and then when I go to yahoo.com it messes up my secure intranet site that I have open. Cant... -
"Microsoft must deliver 'secure environments' not tools to write 'secure code'" : draft article
Hello Please see bellow the final draft of an article soon to be published. I would appreciate your comments and corrections of anything that I... -
whats the best way to mix secure and non secure data on a page?
i have an ecommerce site that is split across two domains, a secure space that retains cc details and the main site where contact information and... -
Jim Dabell #2
Re: secure form on a non-secure page -> how?
BKDotCom wrote:
It doesn't matter how the user gets the form, what matters is how the form> Perhaps not PHP specific, but:
> Both [url]http://www.bankofamerica.com/[/url] and [url]http://www.bankone.com/[/url]
> have account login forms on their non-secure main pages.
>
> How on earth are they accomplishing this?
is submitted.
When you see a page with a form on, and it is simply a page that has been
transmitted over HTTP, no secure information has been transmitted.
When you type something into that form and submit the form, it posts the
information to a location specified by the action attribute of the <form>
element [1]. This location doesn't have to be (and usually isn't) the same
location as the original page with the form on. It can be any URL - and in
these types of cases, is usually an HTTPS URL. This is the data transfer
that matters.
[1] In some cases, the action attribute is not used, but a client-side
script redirects the page. The same thing applies though - you can
redirect to an HTTPS URL just fine.
--
Jim Dabell
Jim Dabell Guest
-
BKDotCom #3
Re: secure form on a non-secure page -> how?
Duh.
I guess I've been made to expect to see the "golden padlock" when I
press submit.. Of course it makes sense that if the "action" is a
secure site, everything gets transmited as such.
Thanks
Jim Dabell <jim-usenet@jimdabell.com> wrote in message news:<LKudndJ6GfwvSrqiRTvUqg@giganews.com>...> BKDotCom wrote:
>>> > Perhaps not PHP specific, but:
> > Both [url]http://www.bankofamerica.com/[/url] and [url]http://www.bankone.com/[/url]
> > have account login forms on their non-secure main pages.
> >
> > How on earth are they accomplishing this?
> It doesn't matter how the user gets the form, what matters is how the form
> is submitted.
>
> When you see a page with a form on, and it is simply a page that has been
> transmitted over HTTP, no secure information has been transmitted.
>
> When you type something into that form and submit the form, it posts the
> information to a location specified by the action attribute of the <form>
> element [1]. This location doesn't have to be (and usually isn't) the same
> location as the original page with the form on. It can be any URL - and in
> these types of cases, is usually an HTTPS URL. This is the data transfer
> that matters.
>
>
> [1] In some cases, the action attribute is not used, but a client-side
> script redirects the page. The same thing applies though - you can
> redirect to an HTTPS URL just fine.BKDotCom Guest



Reply With Quote

