Re: [nyphp-talk] Saving data from forms

2008-02-08 Thread Daniel Convissor
Hi Anthony: On Thu, Feb 07, 2008 at 07:33:37PM -0500, Anthony Wlodarski wrote: > > Input from form -> check for magic quotes(if not then add quotes) -> md5 > value -> save to database. > > Now what happens if you change the logic to: > Input from form -> md5 value -> save to database. > > Other

Re: [nyphp-talk] Saving data from forms

2008-02-07 Thread David Krings
Anthony Wlodarski wrote: I was just writing something up and I have a question about saving data from forms for a password. So the logic for what I want to do is something like this: Input from form -> check for magic quotes(if not then add quotes) -> md5 value -> save to database. Now what ha

[nyphp-talk] Saving data from forms

2008-02-07 Thread Anthony Wlodarski
I was just writing something up and I have a question about saving data from forms for a password. So the logic for what I want to do is something like this: Input from form -> check for magic quotes(if not then add quotes) -> md5 value -> save to database. Now what happens if you chang