Hi,
We have a small problem with the signup.php
I fill in the form for the root user and hit "submit".
Then i get the message: " You are now signed up. Login and enjoy! "
But I can not log in nor can I create any new users.
If I look at the database:
mysql> SELECT * from users_tour;
+----+--------+------+---------+----------+-------+----------+-----+----------+-------+---------+
| ID | userid | name | surname | password | login | handicap | age | homeclub | email | phoneno |
+----+--------+------+---------+----------+-------+----------+-----+----------+-------+---------+
| 29 | | | | | | 0 | | | | |
+----+--------+------+---------+----------+-------+----------+-----+----------+-------+---------+
1 row in set (0.00 sec)
nothing :(
Any ideas why?
mysql --version
mysql Ver 14.12 Distrib 5.0.44, for pc-linux-gnu (i686) using readline 5.2
Cheers!
Logged In: NO
Well you have likly figured this out by now, however I'll answer just incase someone else is looking. This script is writen useing GLOBALS so you must have GLOBALS turned on, which as you may know is not standard practice anylonger. New versions of PHP come with it turned OFF in the ini file for security reasons. I'm re-writting it to use $_POST
Ryan