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 »