HEy there,
I am trying to save the function "rand(1, 1000000)" in a variable but when I am for example trying
$randomnumber = rand(1, 1000000);
it is executing it right ahead while when i try
$randomnumber = "rand(1, 1000000)";
or
$randomnumber = 'rand(1, 1000000)';
It is saving rand(1, 1000000) as variable.
But what I need is a variable saving the result of rand(1, 1000000) so the number does not change either.
Any ideas how I would do this?
Thank you in advance
Max