I need some help automatically generating 250 coupon codes when i run the program.
It must:
- create 250 coupon codes
- the coupon codes must be 10 characters long
- the coupon codes must begin with "IA"
This is my code:
function generateCouponCode($length = 10) {
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$ret = '';
for($i = 0; $i < $length; ++$i) {
'prefix'=>'IA',
$random = str_shuffle($chars);
$ret .= $random[250];
}
return $ret;
}