[RELEASE][WEB] AJAX registration page with interactive java scripts

Newbie Spellweaver
Joined
Apr 23, 2007
Messages
66
Reaction score
5
Hello everyone.
This is AJAX reg page for gunz with nice formcheck scripts and javascript popup window that shows result of registration.
Here how it looks:

Girbicid - [RELEASE][WEB] AJAX registration page with interactive java scripts - RaGEZONE Forums


live:

I used simple backgrounds and gfx, cos thought u will make your own anyway :>
You will need only set your odbc source, usr, and pwd in config.php to make it work
credits to me :)
hope you will not delete little
 


Release it pl0x =)

Or I buy for 5 $ =P
 
If u have any problems better contact me in msn to solve them.

I think u set wrong ODBC source name, login or pwd.
I set wrong connection options, just for test, and got same situation as you, so check your config again.
 
I get "accunt already exits" =\
all ok in my config
 
loop holes, like can some one hack into it and wipe ya DB or some think?
 
I get "accunt already exits" =\
all ok in my config

So something with your odbc source. I modifed script a bit so u will see error now if somethins goes wrong. redownload.

loop holes, like can some one hack into it and wipe ya DB or some think?

This is part of script that filters user info before querying db

Code:
  $login = substr(mysql_escape_string($login),0,20);
  $password = substr(mysql_escape_string($password),0,20);
  $name = substr(mysql_escape_string($name),0,30);
  $age = (int)mysql_escape_string($age);
  $sex = (int)mysql_escape_string($sex);
  $email = substr(mysql_escape_string($email),0,30);
  $zipcode = (int)mysql_escape_string($zipcode);
  $address = substr(mysql_escape_string($address),0,30);
  $country = substr(mysql_escape_string($country),0,30);

secure ? :>
 
Back