Jump to content

[SOLVED] would this work for registration


graham23s

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.