query("SELECT COUNT(*) as c FROM clients")->fetch_assoc()['c'] ?? 0; $total_projects = $conn->query("SELECT COUNT(*) as c FROM projects WHERE status='completed'")->fetch_assoc()['c'] ?? 0; $avg_rating = $conn->query("SELECT ROUND(AVG(rating), 1) as avg FROM testimonials WHERE status='active'")->fetch_assoc()['avg'] ?? 5.0; // Get services grouped by category (if you have categories table, use that; otherwise group by type) $all_services = $conn->query("SELECT * FROM services WHERE status='active' ORDER BY id ASC"); // Get projects $projects_query = $conn->query("SELECT p.*, c.name as client_name, c.company as client_company FROM projects p LEFT JOIN clients c ON p.client_id = c.id WHERE p.status != 'cancelled' ORDER BY p.created_at DESC LIMIT 6"); // Get blog posts $blog_query = $conn->query("SELECT p.*, c.name as category_name FROM blog_posts p LEFT JOIN blog_categories c ON p.category_id = c.id WHERE p.status='published' ORDER BY p.created_at DESC LIMIT 3"); // Get testimonials $testimonials_query = $conn->query("SELECT * FROM testimonials WHERE status='active' ORDER BY display_order ASC, created_at DESC LIMIT 6"); // Get clients logo/name for trust section $clients_list = $conn->query("SELECT * FROM clients WHERE status='active' ORDER BY name ASC LIMIT 8"); ?>
🚀 Premium Digital Solutions

Transform Your Business with Digital Excellence

We provide premium web development, AI-powered WhatsApp chatbots, digital marketing & SEO services to help your business grow online.

+

Happy Clients

+

Projects Done

/5

Client Rating

GlobalWebix Team
💼
500+ Projects Delivered Successfully
What We Offer

Our Premium Services

Comprehensive digital solutions tailored for your business growth

num_rows > 0): $all_services->data_seek(0); $services_array = []; while ($svc = $all_services->fetch_assoc()) { $services_array[] = $svc; } // Group services - har 2 ko ek row mein $chunks = array_chunk($services_array, 4); ?> $chunk): ?>

Services coming soon!

About GlobalWebix
5+ Years Experience
About Us

We Are GlobalWebix - Your Digital Partner

At GlobalWebix, we specialize in creating powerful digital solutions that drive business growth. Founded by Seji Ahmad, we are committed to delivering excellence in web development, AI solutions, and digital marketing.

Expert Team

Skilled professionals with years of experience

On-Time Delivery

We value your time and deliver as promised

24/7 Support

Always available to help you anytime

Affordable Prices

Premium quality at competitive rates

Our Work

Recent Projects

Showcasing our latest completed and ongoing projects

num_rows > 0): while ($project = $projects_query->fetch_assoc()): $status_color = $project['status'] == 'completed' ? 'success' : ($project['status'] == 'in-progress' ? 'primary' : 'warning'); ?>

...

Projects coming soon!

Ready to Grow Your Business? 🚀

Let's discuss your project and create something amazing together

Or call us directly at +91 7880588713

Trusted By

Our Valued Clients

Businesses that trust us for their digital solutions

num_rows > 0): while ($client = $clients_list->fetch_assoc()): ?>
<?php echo $client['name']; ?>
Your CompanyJoin our client list
Blog

Latest Articles

Insights and tips for your digital growth

num_rows > 0): while ($post = $blog_query->fetch_assoc()): ?>

...

views

Blog posts coming soon!

Testimonials

What Our Clients Say

Hear from businesses we've helped transform

num_rows > 0): while ($testimonial = $testimonials_query->fetch_assoc()): ?>
"

...

<?php echo $testimonial['client_name']; ?>