$cust = rand(50,100);
$minutes = rand(200,2500);
$minutesarr = array();
function minutesTable()
{
global $cust,$i,$minutes,$minutesarr;
for ($i = 0; $i <= $cust; $i++)
{
array_push($minutesarr,$minutes);
}
}
I’ve even resorted to using $minutesarr[$i] = $minutes; but that didn’t work either which is strangely mysterious.
Edit: Whoops I forgot to add the $cust variable in the thread. Let me add that in there to prevent confusion.
One of the following must be happening:
$custis never declared$custis less than 1So confirm/fix the above and you should be dandy.
Also I should note that you probably intended the
$minutesvariable to contain a different number for every loop, but it won’t with your current code. You have to run therandfunction again for every loop to get a new number.To answer your comment
Expanding upon your current code: