Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~3K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for fidolas7

Your most serious issue here is that your function for cleaning user input isn't accomplishing anything as you're not calling it in a manner that requests or returns any value. This is the first thing you need to fix because you're wide open to an injection attack. [CODE] function protect($value) …

Member Avatar for tcatt
-1
95
Member Avatar for newbieJS

Rather than all this isNaN and parseInt usage (especially for testing that a string is valid alphabetic) you should utilize regular expressions. Regex is very powerful and will serve you well to begin learning how they work. Match exactly 6 numeric digits: [CODE] var string = "123456"; var regexp = …

Member Avatar for tcatt
0
3K
Member Avatar for hyuugurt

First time posting here, signed up to respond to this thread as I'm working out a solution to this very same question. I have no idea how this post will look ;P So, the tables I'm using look something like this.. My User Accounts table (simplified): [CODE] CREATE TABLE `user_accounts` …

Member Avatar for tcatt
0
153

The End.