Search found 4 matches

by phreud
Tue Mar 02, 2004 4:28 pm
Forum: Databases
Topic: Create table on .mdb access database with odbc system-dsn
Replies: 0
Views: 478

Create table on .mdb access database with odbc system-dsn

Hey, I have a problem and can't find any info online on how to do it. I'm trying to create a table in an access database connected with odbc system-dsn located on a web hotel. I think they are using IIS. This is what I've tried: $res=ODBC_EXEC($connection,"CREATE TABLE forum2 ( id int NOT NULL ...
by phreud
Thu Feb 26, 2004 9:42 am
Forum: PHP - Code
Topic: Login script using md5 encryption
Replies: 8
Views: 4140

Thanks for all the answers. This is not a very security critical system, so I'll go with my approach then. Nevertheless, Roja's post was very interesting. Maybe I'll try to implement it on my next project.

/phreud
by phreud
Thu Feb 26, 2004 8:04 am
Forum: PHP - Code
Topic: Login script using md5 encryption
Replies: 8
Views: 4140

Ok, but, would you say in a single-user login, this is equally safe?
by phreud
Thu Feb 26, 2004 7:46 am
Forum: PHP - Code
Topic: Login script using md5 encryption
Replies: 8
Views: 4140

Login script using md5 encryption

I've written a small login script using md5 encryption and I want to know the weakness of this kind of approach. There must be a reason people usually store username and password in a database? Anyway, here is the code. Please comment: <?php $uname_entry = md5($_POST&#1111;"uname"]); $...