'

Welcome to Wizdom Networks

Your trusted partner for IT Consulting and Services.

Explore Our Services

', 'about.php' => '

About Wizdom Networks

At Wizdom Networks, we specialize in delivering top-notch IT solutions to help your business thrive.

', 'contact.php' => '

Contact Us

', 'testimonials.php' => '

Testimonials

Here\'s what our clients have to say about us.

', 'error.php' => '

Page Not Found

The page you are looking for does not exist. Please check the URL or go back to the home page.

', 'services/it_consulting.php' => '

IT Consulting

Our IT consulting services provide businesses with tailored solutions to maximize productivity and efficiency.

', 'services/emergency_support.php' => '

Emergency Support

We offer 24/7 emergency IT support to ensure your business operations run smoothly.

', 'services/managed_services.php' => '

Managed Services

We provide end-to-end managed IT services to keep your business running efficiently.

', 'services/online_brand_management.php' => '

Online Brand Management

Enhance your online presence with our expert brand management services.

', 'services/project_management.php' => '

Project Management

Efficient project management to ensure your IT projects are delivered on time and within budget.

' ]; // Use the agreed directory structure for pages $basePath = realpath(__DIR__ . '/../resources/views/pages'); if (!$basePath) { die("Error: The base directory for pages does not exist. Please ensure the directory structure is correct.\n"); } foreach ($pages as $file => $content) { $filePath = $basePath . '/' . $file; $dirPath = dirname($filePath); // Ensure the directory exists if (!is_dir($dirPath)) { mkdir($dirPath, 0755, true); echo "Created directory: $dirPath\n"; } $title = ucwords(str_replace(['_', '.php'], [' ', ''], basename($file))) . ' - Wizdom Networks'; // Create the PHP file with the correct structure $template = <<