PHP Tutorial for Beginners
What is PHP? It is an open-source general-purpose scripting language that is especially suited for web development. Code executed on the server. It can be embedded in HTML. You should…
Read more »How to Move a Live WordPress Site to Local Server
Why we are discussing on this topic because we are here to tell you when any developer of WordPress wants to test new themes, plugins, or another development testing. then…
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 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 »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 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 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 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 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 »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 »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 »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 »Useful Visual Studio Code Extensions.
1 :-Visual Studio Code HTML Snippets This extension adds rich language support for the HTML Markup to VS Code, including: Full HTML5 Tags Colorization Snippets [partially implemented] Quick Info description…
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 »Creating a OAuth 2.0 Protected REST API In Laravel
Download and install WAMP or XAMPP Server Download and install composer Open Gitbash and Set the composer composer global require “laravel/installer” Create a new Laravel Project Refer following code How…
Read more »Setting a Local Development Environment for Laravel on Windows | Install Laravel on Windows
Many developers use Windows for PHP projects, we will cover a basic XAMPP Setup for a Laravel project. Following these easy steps will help you run your PHP projects and…
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 »Todo Application in Laravel
1.Create Project in Laravel Composer create-project laravel/laravel todolist 2.Create CRUD Controller php artisan make:controller TodosController –resource 3.Route setup of CRUD Controller routes/web.php 4.Create Database todolist localhost/phpmyadmin create database todolist 5.Create…
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 »TURN OFF DISPLAY ERROR IN PHP
Method 1 & 2 & 3 https:///…-standards-error-fix Method 4 error_reporting(0); ini_set(‘display_errors’, ‘0’); # don’t show any errors… error_reporting(E_ALL | ~E_STRICT); # …but do log them Few more http:///…-standards-in-joomla…
Read more »Any Possible Software/Plugin FoR SCM Workflow
pankaj2252369@gmail.com created the topic: Any possible Software/plugin for SCM workflow? Hey Team, Thanks for lot of information on the site. wonderful work. Any idea on SCM workflow software/framework ? which…
Read more »