Jump to content

random array value


suttercain

Recommended Posts

Hi guys,

 

I am having a brain fart. I have done this before but need to generate random values from the array. I can get the key to echo, but not the value.

 

<?php

$randomAd = array("advertisement 1",
                "advertisement 2",
                "advertisement 3");

$listTotal = count($randomAd);
$randomize = rand(0, $listTotal);
echo $randomize;
?>

Link to comment
https://forums.phpfreaks.com/topic/69389-random-array-value/
Share on other sites

 

I think this is the code you want!

 

 

 

<?php

$randomAd = array("advertisement 1",
                "advertisement 2",
                "advertisement 3");

$listTotal = count($randomAd);
$randomize = rand(0, $listTotal);
//echo $randomize;

echo $randomAd[ $randomize];
?>

 this will generate random array values..

Link to comment
https://forums.phpfreaks.com/topic/69389-random-array-value/#findComment-349014
Share on other sites

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.