0
My Mysql table has the following fields:
id;
num_min;
num_max;
The user will enter a number and need to check if that number is in the range between the column num_min and num_max of the table.
I tried with between but it didn’t work!
You can do this directly using a mysql query or it has to be done via php?
Thanks, it worked out!
– Henqsan