Git Cheat Sheet
August 4, 2023
/Programming/System

Git cheat sheet

Git is a distributed version control system used in software development for efficient team collaboration, tracking code changes, and managing project history. It enables developers to work on different features simultaneously and facilitates easy merging of contributions.

coding best practice
November 21, 2022
/Programming

Best practice for writing readable code

Clean and maintainable code is one of the fundamentals of development. Code readability also helps in team development.

CRM
October 16, 2024
/Products

Unlock Your Sales Potential: The Ultimate Tool for Lead Management

In today’s fast-paced business environment, effective lead management is essential for success. Our innovative solution offers a comprehensive suite of features designed to streamline your sales processes, enhance team productivity, and ultimately drive revenue growth. Let’s dive into the key benefits of our platform: Lead Capture and Tracking Capturing leads efficiently is the first step […]

Driving School
October 16, 2024
/Products

Driving School Management System

Comprehensive software solution tailored for driving school management to streamline their operations. The platform offers key features such as: Student Registration and Course Enrollment:Allows new student registrations and enroll to different courses offered by the school. Scheduling & Booking:Allows students to easily book lessons with instructors based on real-time availability. Instructor Management:Enables driving schools to […]

photographer
October 16, 2024
/Products

Event Photographer Booking Suite

All-in-one Event Photographer Booking Suite to streamline how photographers manage their business and clients book services. The platform includes: Client Booking & Scheduling:A user-friendly system allows clients to book photographers for various events like weddings and corporate functions. Custom Packages & Pricing:Flexible pricing options enable photographers to offer tailored packages based on event specifics. Internal […]

MySQL Logo
June 13, 2023
/Database

MySQL cli commands

MySQL is a widely used open-source database system for web applications. The MySQL Command-Line Interface (CLI) is a text-based tool to interact with the database directly from the command line.

write data to csv with php
March 6, 2023
/PHP

Write Data to CSV File in PHP: Step-by-Step Guide

The process to write submitted data to a CSV file in PHP involves retrieving the data from the $_POST superglobal array, opening a CSV file for writing using fopen(), creating an array of the data, writing the array as a CSV row to the file using fputcsv(), and closing the file using fclose(). 1. Retrieve […]

Html php google sheets
August 23, 2022
/HTML/CSS/PHP

Submit HTML Form to Google Sheets with PHP

Submit HTML form to Google sheets is convenient when we have requirement to just collect data form user or customers, while maintaining corporate consistency, without costly development. We can create a form in our website and save submitted form data in google sheets.

WordPress-Logo
April 8, 2022
/Wordpress

Create WordPress Multisite with different domains

Enable WordPress mutlisite feature Got to wp-config.php file of wordpress installation and open it in file editor. And add following line just above the line that says ‘/* That’s all, stop editing! Happy publishing */’. define( ‘WP_ALLOW_MULTISITE’, true ); Then head back to WordPress admin dashboard and got to Tools » Network Setup page to configure WordPress multisite […]

WordPress-Logo
April 7, 2022
/Wordpress

Custom form in WordPress without plugin

Creating custom form without plugin to submit form in wordpress site and save to custom database table. Custom form adds more control over form submission and data handling process

Laravel
February 18, 2022
/PHP

UUIDs in Laravel/Lumen applications with eloquent

Universal Unique Identifier (UUID) is a 128-bit string used to uniquely identify objects/resources in computer systems. It also termed as Global Unique Identifier (GUID). The probability of duplicated UUID not zero, but close enough to be zero, to be negligible. We can use UUIDs in Laravel as primary key of records in our database.

Data Encryption
December 24, 2021
/PHP/Uncategorized

Data Encryption with Eloquent – Laravel

Few weeks back, one of my client asked me about the possibility of data encryption of his customers data, stored in database. It would be unusable, even if someone got the dump of those data. But those data should be usable and readable in his existing applications. My client has app built on built on […]