Jump to content

[SOLVED] How do you add +1 in this part?


willdk

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)

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.