Jump to content

Recommended Posts

if you have

$min = "10";
$max = "20";
...
rand($min,$max)

 

How do you add +1 to the value of the rand output?

rand($min,$max) +1

I would use the if statement.

Search google... http://www.google.co.za/search?hl=en&q=php+if+statement&btnG=Search&meta=

Tzag.com...

 

I would use the if statement.

Search google... http://www.google.co.za/search?hl=en&q=php+if+statement&btnG=Search&meta=

Tzag.com...

I don't understand why I have to use 'if' ???

 

I make this smaller...

$random = rand($min,$max);

 

Then I have a value between 10 and 20 for $random. So if the value is 15 then I want to have the same value to be increased by 1 ($random + 1). I'm a newbie so don't shoot me if I'm wrong... ;)

Btw, don't use

$min = "10";
$max = "20";

for integers, use

$min = 10;
$max = 20;

 

Thanks for the tip

 

$var + 1;

is exactly the same as

$var++;

 

my working code

$random = rand($min,$max);
$irandom = $random + 1;

 

When I use $random++ the value decreases (-1)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.