Live Editor
Change the text in the hero section above.
'Build Your Dream Website', 'hero_subtitle' => 'Visually design, customize, and publish beautiful, responsive websites. No code required.' ]; // Handle POST request to update content if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['hero_title']) && isset($_POST['hero_subtitle'])) { $content['hero_title'] = htmlspecialchars($_POST['hero_title']); $content['hero_subtitle'] = htmlspecialchars($_POST['hero_subtitle']); file_put_contents($content_file, json_encode($content, JSON_PRETTY_PRINT)); // Redirect to avoid form resubmission header("Location: " . $_SERVER['REQUEST_URI']); exit; } } // Load content from JSON file if it exists if (file_exists($content_file)) { $json_content = file_get_contents($content_file); $loaded_content = json_decode($json_content, true); if ($loaded_content) { $content = $loaded_content; } } ?>
Change the text in the hero section above.