What Happens When a PHP File is Called? (Under the Hood of PHP Execution)
🐘 What Happens When a PHP File is Called? (Under the Hood of PHP Execution)Ever wondered what really happens when your browser requests a PHP file li...
Sharing my journey, experiences, and insights about software development, best practices, and emerging technologies.
🐘 What Happens When a PHP File is Called? (Under the Hood of PHP Execution)Ever wondered what really happens when your browser requests a PHP file li...
When building search features in Laravel applications, it's common to reach for the LIKE operator: DB::table('posts')->where('title', 'LIKE', '%Lar...
Database performance is often the most critical factor in application speed and user experience. Inefficient database queries can cause significant sl...
Former Software Engineer at KuiperZ
With over 15 years of experience in handling multiple technology projects across industries, KuiperZ has gained strong expertise in areas of technology consulting, solutions, and product engineering. With a team of technology experts, we help Enterprises with modern-day products and top-notch services through our tech-driven approach. Digitization being our key strategy, we digitally assess their operational capabilities to achieve our customers' end goals.
// Hello, I'm Nokib! class Developer { constructor() { this.name = "Kazi Mohammad Nokib"; this.role = "Software Engineer"; this.languages = ["PHP", "JavaScript", "Python"]; this.frameworks = ["Laravel", "Vue.js", "Tailwind CSS"]; } code() { return "Building elegant solutions to complex problems"; } share() { return "Teaching and writing about development"; } } const nokib = new Developer();