$title
This page is under construction.
PHP;
// Create folder if it doesn't exist
if (!is_dir($folder)) {
mkdir($folder, 0755, true);
}
$filePath = "$folder/index.php";
// Only create if it doesn't already exist
if (!file_exists($filePath)) {
file_put_contents($filePath, $content);
return "✅ Page created: $filePath";
}
return "⚠️ Skipped (already exists): $filePath";
}
?>