Re: [PHP] Still struggeling with my first script...

2005-10-15 Thread Jochem Maas
Chris W. Parker wrote: twistednetadmin mailto:[EMAIL PROTECTED] on Friday, October 14, 2005 5:15 PM said: All: Sorry. I forgot to write what's wrongstupid me... No problem. You'll get used to it. (I don't mean you'll get used to being stupid! I mean you'll get used to including

RE: [PHP] Still struggeling with my first script...

2005-10-14 Thread Chris W. Parker
twistednetadmin mailto:[EMAIL PROTECTED] on Friday, October 14, 2005 12:39 PM said: Here are all the scripts original. It still won't work. I can't see what's wrong with it??? It's from the tutorial PHP5 and Mysql for dummies. What exactly is the problem? It still won't work is not

Re: [PHP] Still struggeling with my first script...

2005-10-14 Thread twistednetadmin
All: Sorry. I forgot to write what's wrongstupid me... Mike:1) I'm not sure how to indent the code... 2) I'm using Dreamweaver, but not to write the code for me. I'm not that lazy :). And that's not the way for me to learn. It's just rather annoying that all the tutorials I have tried

Re: [PHP] Still struggeling with my first script...

2005-10-14 Thread twistednetadmin
Did one change in the script guildregister.php: Changed the md5 part in the INSERT query to: $sql_reg = sprintf(INSERT INTO guildlogin (guilduser_name, guilduser_pass) VALUES ('%s', password('%s')), $_POST['guilduser_name'], $_POST['guilduser_pass']); $reg = mysql_query($sql_reg) or

RE: [PHP] Still struggeling with my first script...

2005-10-14 Thread Chris W. Parker
twistednetadmin mailto:[EMAIL PROTECTED] on Friday, October 14, 2005 5:15 PM said: All: Sorry. I forgot to write what's wrongstupid me... No problem. You'll get used to it. (I don't mean you'll get used to being stupid! I mean you'll get used to including all the relevant info!)

Re: [PHP] Still struggeling with my first script...

2005-10-14 Thread Ben
twistednetadmin said the following on 10/14/05 17:15: All: Sorry. I forgot to write what's wrongstupid me... Mike:1) I'm not sure how to indent the code... By putting spaces in front of some of the lines, it will make your code much easier to read and your life much, much easier. At

Re: [PHP] Still struggeling with my first script...

2005-10-14 Thread twistednetadmin
Well. I have figured out that the login is working as it should. The query brings back both the username and the userpass and stores them in $_SESSION as: auth|yes|logname|Test When I echoed the query with both user and pass, I got both back as they should be. In this case I ran user:Test