Quote:
Originally posted by Shpookdefied
PHP Code:
//Define Variables //
$qrback[1]="qrback1.jpg";
$qrback[2]="qrback2.jpg";
$qrback[3]="qrback3.jpg";
$qrback[4]="qrback4.jpg";
$numbgs = count($qrback);
// Generate randomness
$num = rand(1,$numbgs);
//output background
$qrback = "{imagesfolders}/qrback$num";
|
i think you need to look at your arrays.
the way you make then is good, but displaying it isn't it.
your doing this: qrback$num
this will generate: qrback1 or qrback2 and increase the numbers to the max you have set. your just telling it to show $num with qrback before it.
not showing anything from the array
to do the array correclty: $array_name[$value].
so for you it would be: $qrback[$num].
that would show them
hope this helps