For example, in a browser game I want the user to click on attack to return another user who has + - the same battle power as he.
$select = $mysqli->query("select * from data order by rand()");
This way it always returns a random value, but what I want is a value between x and y ... something like rand ($ min, $ max), but from what I saw, order by rand
does not work that way ...
Does anyone give me a light how to do this?