$fullname, 'email' => $email, 'company' => $company, 'mobilephone' => $mobilephone, 'industry' => $industry, 'role' => $role, 'city' => $city, 'state' => $state, 'postcode' => $postcode, 'country' => $country, 'password' => $password, ]); if ($result['success']) { // Auto-login after registration loginUser($email, $password); header('Location: /dashboard/dashboard.php?registered=1'); exit; } else { $errors['email'] = $result['error']; } } } } $pageTitle = 'Create an Account'; include __DIR__ . '/_head.php'; // Helper: old value for text inputs $v = fn(string $key) => htmlspecialchars($old[$key] ?? '', ENT_QUOTES, 'UTF-8'); // Helper: re-select dropdown option $sel = fn(string $key, string $val) => (($old[$key] ?? '') === $val) ? 'selected' : ''; ?>