Hallo, hab folgenden Code:
Da kommt zum Beispiel 2301-4510-4082-6305 raus. Wie bekomme ich das alls in eine Variable? Mit den Bindestrichen****?
PHP:
<?php
$zufall1 = rand(1000,9999);
echo $zufall1;
echo "-";
$zufall2 = rand(1000,9999);
echo $zufall2;
echo "-";
$zufall3 = rand(1000,9999);
echo $zufall3;
echo "-";
$zufall4 = rand(1000,9999);
echo $zufall4;
?>