Due to the remarkable response, we’re curating our onboarding process to ensure each business receives the personalized attention it deserves.
Upon registration, you’ll receive a confirmation with your unique queue number. You’ll also see a real-time status update on this page, keeping you informed about your position in the queue.
function generate_unique_registration_id() {
// Generate a 6 digit random number
$unique_id = mt_rand(100000, 999999);
// Check if the number has already been used
$used_ids = get_option('used_registration_ids', array());
// If the ID has been used, regenerate
while (in_array($unique_id, $used_ids)) {
$unique_id = mt_rand(100000, 999999);
}
// Save the new ID as used
$used_ids[] = $unique_id;
update_option('used_registration_ids', $used_ids);
return $unique_id;
}
// Hook this function to your registration process at the appropriate place
// For example:
// $user_registration_id = generate_unique_registration_id();
Unique Registration ID
0
Still have questions?
Require additional clarification? Reach out for comprehensive answers.