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 Link to comment https://forums.phpfreaks.com/topic/60172-solved-would-this-work-for-registration/ 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. Link to comment https://forums.phpfreaks.com/topic/60172-solved-would-this-work-for-registration/#findComment-299355 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 Link to comment https://forums.phpfreaks.com/topic/60172-solved-would-this-work-for-registration/#findComment-299364 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.