Best Laravel Packages to create awesome Admin Panels & other functionalities.

Here i am going to discuss about most trending and awesome packages for Laravel Developers. with these packages, you can easily embed some cool features like captcha, breadcrumbs and increase…

Read more »

55 Steps For build a project in php Laravel Framework.

1.laravel new project (open command prompt on xampp/htdocs directory) 2.cd projectname 4.Customise users table(database/migration/create_users_table.php) 5.Make Model and Migration for Role Table 6.Customise roles table(database/migration/create_roles_table.php) 7.Make Relationship between users and roles…

Read more »

How To Create a PDF using PHP

Step 1. Create a file index.php file. Copy this code. then, create a makepdf.php file. Step 2. Go to this link: https://github.com/mpdf/mpdf. Which includes mPDF is a PHP library that…

Read more »

Introduction to PHP Data Object PDO in PHP

There are three main API options when considering connecting to a MySQL database server. PHP’s MySQL Extension. PHP’s mysqli Extension. PHP Data Object (PDO). PHP Data Object (PDO) PDO is…

Read more »

How to send pdf file through phpmailer?

1.Create a directory for project on htdoc directory in xampp if you using wamp server then you create your directry on www directory. 2.Open your project directory with command prompt…

Read more »

How To Create a PDF using PHP

1.Create a directory for project on htdoc directory in xampp if you using wamp server then you create your directry on www directory. 2.Open your project directory with command prompt…

Read more »

What is function definition in php? with example.

PHP Function:- A function is a block of statements written in a program to perform some specific task.

Read more »

How to declare a local & global variable in PHP?

Local Variable:- Local Variables mean local is declared inside a function. Its value applies in any function. When local variable value modified in one function then changes not apply in…

Read more »

PHP important topics with example

PHP:- Hypertext Preprocessor(Recursive Acronym) Server-Side Programming/Scripting Language It can be embedded directly within HTML. Files use a “.php” file extension. PHP Case Sensitivity:- PHP Comments:- PHP Variables ($):- PHP echo…

Read more »

Php function

Read more »

What is the best way to learn SQL for data analyst?

Fundamental SQL Statements Create: creating a basic table involves naming the table and defining its columns and each column’s data type.Syntax : CREATE TABLE “table_name”( “column 1” “data type for…

Read more »

Beginner guide of PHP Strings

A string is arrangement of characters, where a character is equivalent to a byte. This implies PHP just supports a 256-character set, and subsequently doesn’t offer local Unicode support. String…

Read more »
Complete Reference Guide

Complete reference guide of PHP Web Programming!

About Web Programming With PHP This website is designed to serve as a first course in undergraduate web application programming in computer science curriculum. Besides the basic concepts of web…

Read more »
Complete Reference Guide

Complete reference guide of PHP Databases!

PHP MySQL Introduction MySQL is one of the most popular relational database system being used on the Web today. It is freely available and easy to install, however if you have installed…

Read more »
Complete Reference Guide

Complete reference guide of PHP Operators & Control Structures!

What is Operators in PHP Operators are symbols that tell the PHP processor to perform certain actions. For example, the addition (+) symbol is an operator that tells PHP to…

Read more »
Complete Reference Guide

Complete reference guide of PHP Classes & Objects !

What is Object Oriented Programming Object-Oriented Programming (OOP) is a programming method that is based on the concept of classes and objects. As known to procedural programming where the focus…

Read more »

Deep Dive into PHP General Types

History of php father of php rasmus lerdorf in 1994 version 1.0 in(june). (that time he was created (CGI) Comment Gateway Interface and written in C ) second version in…

Read more »
Complete Reference Guide

Complete reference guide of PHP Arrays!

What is PHP Arrays Arrays are complex variables that allow us to store more than one value or a group of values under a single variable name. Let’s suppose you…

Read more »

Beginner guide of PHP Functions

PHP stands for Hypertext Preprocessor. PHP (recursive abbreviation for PHP: Hypertext Preprocessor) is a broadly utilized open source universally useful scripting language that is particularly appropriate for web advancement and…

Read more »
Complete Reference Guide

Complete reference guide of PHP Strings!

What is String in PHP A string is a sequence of letters, numbers, special characters and arithmetic values or combination of all. The simplest way to create a string is…

Read more »
Complete Reference Guide

Complete reference guide of PHP Functions!

PHP Built-in Functions A function is a self-contained block of code that performs a specific task. PHP has a huge collection of internal or built-in functions that you can call…

Read more »

Beginner guide of PHP General Types

PHP General Types means Basics of PHP programming language:- Comments & case-sensitivity Variables Includes below topic:- Integers, Booleans, Decimals, Constants Using built and functions determine types:- This model are very…

Read more »

How to fix PHPMyAdmin error, incorrect format parameter that appeared while importing a database?

First of all, we have to see some basic settings which are situated in php.ini. whenever we upload a database which size will be greater than max upload size and…

Read more »

8 Top Features of PHP Laravel Frameworks

The best features of PHP Laravel frameworks that make it popular among custom software developers and businesses alike: 1. Template Engine The best PHP framework is highly acknowledged for its…

Read more »

Error – phpmyadmin not accessible on network using ip address but localhost in ubuntu

Error Access forbidden! New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file “httpd-xampp.conf”. Step 1…

Read more »

Error – No package php-mbstring and php-bcmathavailable in RHEL 7

Errors Solutions

Read more »

PHP Tutorial for Beginners

PHP FRONT TO BACK What is PHP?:- PHP: Hypertext Preprocessor(Recursive Acronym)Server-Side Programming/Scripting LanguageCan be embedded directly within HTML (<?php?>)Files use a “.php” file extension How Does PHP Work?:- Client makes…

Read more »

How to fetch data in excel or generate excel file in PHP

File structure for this tutorial : config.php (database connection file) index.php (For fetching data ) genrate-excel.php (For genrating excel file ) Create a sql table tblemployee. Structure of sql table…

Read more »

Password Hashing in PHP

Functions for hashing password password_hash() password_verify() password_hash() – Syntax: [code language=”php”] string password_hash(string $password , integer $algo [, array $options ] ) [/code] string $password – Password provide by user…

Read more »