<?php $range = range(2,20); # make an array for tokens using rnage foreach($range as $k){ $tokens["token{$k}h"] = substr(str_shuffle("0p23456789ABCDEFGHIJKLMNoPQRSZUVWXYZ"), 0, 20); } print_r($tokens); # make token variables using range foreach($range as $k){ ${"token{$k}h"} = substr(str_shuffle("0p23456789ABCDEFGHIJKLMNoPQRSZUVWXYZ"), 0, 20); } echo $token10h; ?>
You have javascript disabled. You will not be able to edit any code.