The Second Half Of Life
Defining how you live.
Read moretitle: Second Half Home Page category: home content_type: article summaries audience: 60+ topic: subject information intent: navigate tags: - foundation_articles - guides - trust_statement intent_tags: - navigating content categories - access key topics query_tags: - how to navigate second half - how to define the second half of life - where do I find information for later in life published: 2026-04-22 pathway: structure url: index.html
Member access is coming soon.
This will include:
• Saved decisions
• Personal dashboard
• Extended tools
Australian-focused information on money, health, housing and purpose.
Second Half is an independent Australian resource for people aged 60+.
Factual, practical information - so you can think clearly and choose wisely.
We do not provide medical, legal or financial advice.
Defining how you live.
Read moreKnowing when to make them.
Read moreRecognising what is normal.
Read moreEvidence-based healthcare.
Read moreAvoiding loneliness later in life.
Read moreNavigating support systems.
Read moreA plain English guide.
Read morePreparing for stability.
Read moreAvoid common financial risks.
Read moreStay, downsize or transition.
Read moreCare and support options.
Read moreUnderstanding your options.
Read moreAustralia's systems & services apply to everyone - but lived experience, family structures and community obligations can differ. We acknowledge this and provide links to culturally appropriate resources where available.
Read moreFederal & State benefits explained clearly
Read moreFinding your purpose in life after 60.
Read moreSmall steps. Real people. No pressure.
Financial planning and stability.
Start HerePreventative care and wellbeing.
Start HereLiving options after 60.
Start HereWork, learning and contribution.
Start HereChecklists and decision tools.
Start HereA quiet note, from time to time.
connect_error) { $message = "Database connection failed."; } else { // CHECK IF EMAIL ALREADY EXISTS $stmt = $conn->prepare("SELECT id FROM subscribers WHERE email = ?"); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->store_result(); if ($stmt->num_rows > 0) { $message = "You're already subscribed."; $stmt->close(); $conn->close(); } else { $stmt->close(); // INSERT SUBSCRIBER $stmt = $conn->prepare( "INSERT INTO subscribers (name, email, subscribed_at) VALUES (?, ?, NOW())" ); $stmt->bind_param("ss", $name, $email); if ($stmt->execute()) { // MAILERLITE SETTINGS $apiKey = 'YOUR_API_KEY'; $groupId = 'YOUR_GROUP_ID'; $data = [ "email" => $email, "fields" => [ "name" => $name ], "groups" => [$groupId] ]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://connect.mailerlite.com/api/subscribers"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, [ "Authorization: Bearer $apiKey", "Content-Type: application/json" ]); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data)); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); // CLEAN UP $stmt->close(); $conn->close(); // REDIRECT $status = ($httpCode === 200 || $httpCode === 201) ? 'success' : 'partial'; header("Location: /welcome.php?status=$status"); exit(); } else { $message = "Unable to save your subscription."; $stmt->close(); $conn->close(); } } } } } ?>