graham23s Posted July 16, 2007 Share Posted July 16, 2007 Hi Guys, i was thinking last night would this work before i tried it, it's a function to enter random digits (a basic capcha) $rand_number = (0000000,999999) then 2 text fields, one that displays the random number, the other to input the SAME number, in the POST screen if both don't match then spit an error out, does anyone see anything wrong with that at all? cheers Graham Quote Link to comment Share on other sites More sharing options...
dooper3 Posted July 16, 2007 Share Posted July 16, 2007 yep, you have called the variable $rand_number, but then just put it as a set of brackets with the numbers 000000 and 999999 in between, and a comma. That doesn't work, you have to call a function to generate the random number from those 2 numbers. Change it to... $rand_number = rand(000000, 999999); That should work. Quote Link to comment Share on other sites More sharing options...
graham23s Posted July 16, 2007 Author Share Posted July 16, 2007 your right mate in my hurry i left half the cod eout lol thanks mate Graham Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.