I didn't include the form part as that's just normal code.
I'm just now finding out about this $_post stuff. This is all new to me and a bit frustrating. Guess I'm way old-school PHP.
So I have to use $_post for every form variable now? Yeesh. That's a lot of work and re-coding of my other sites.
Just to get me started can someone show me how this would look with the code I given?
I tried this: if($POST['submit'] == 1 && !empty($SESSION['freecap_word_hash'])) {
to get the ball rolling and that doesn't seem to work.
Also would it be if (!$post['realname']) {$feederror1++;} or if(empty($POST['realname'])) {$feederror1++;}
This is going to be a nightmare...