okay heres my code below:
$keys = rand(10000,99999);
$fkeys = rand(100,999);
$bkeys = rand(100,999);
$key = $fkeys,$keys,$bkeys;
echo $key
this line "$key = $fkeys,$keys,$bkeys;" is giving me errors. i would like the result to be something like $fkeys$keys$bkeys. Any idea how i would be able to do that?. i have tried $fkeys+$keys+$bkeys, but it is just adding up the numbers and displaying the result as one who number.
Any help would be appreciated.
Danny